Changeset 5800 for trunk/wp-login.php
- Timestamp:
- 07/15/2007 05:50:38 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-login.php
r5634 r5800 346 346 347 347 <form name="loginform" id="loginform" action="wp-login.php" method="post"> 348 <?php if ( !in_array( $_GET['checkemail'], array('confirm', 'newpass') ) ) : ?> 348 349 <p> 349 350 <label><?php _e('Username:') ?><br /> … … 360 361 <input type="hidden" name="redirect_to" value="<?php echo attribute_escape($redirect_to); ?>" /> 361 362 </p> 363 <?php else : ?> 364 <p> </p> 365 <?php endif; ?> 362 366 </form> 363 367 </div> 364 368 365 369 <ul> 366 <?php if (get_option('users_can_register')) : ?> 370 <?php if ( in_array( $_GET['checkemail'], array('confirm', 'newpass') ) ) : ?> 371 <li><a href="<?php bloginfo('url'); ?>/" title="<?php _e('Are you lost?') ?>"><?php printf(__('Back to %s'), get_bloginfo('title')); ?></a></li> 372 <?php elseif (get_option('users_can_register')) : ?> 367 373 <li><a href="<?php bloginfo('wpurl'); ?>/wp-login.php?action=register"><?php _e('Register') ?></a></li> 368 374 <li><a href="<?php bloginfo('wpurl'); ?>/wp-login.php?action=lostpassword" title="<?php _e('Password Lost and Found') ?>"><?php _e('Lost your password?') ?></a></li>
Note: See TracChangeset
for help on using the changeset viewer.