Changeset 6343
- Timestamp:
- 11/26/2007 09:40:00 PM (18 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
wp-content/themes/classic/comments-popup.php (modified) (1 diff)
-
wp-content/themes/classic/comments.php (modified) (1 diff)
-
wp-content/themes/default/comments-popup.php (modified) (1 diff)
-
wp-content/themes/default/comments.php (modified) (1 diff)
-
wp-includes/general-template.php (modified) (1 diff)
-
wp-login.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/classic/comments-popup.php
r6026 r6343 58 58 <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> 59 59 <?php if ( $user_ID ) : ?> 60 <p><?php printf(__('Logged in as %s.'), '<a href="'.get_option('siteurl').'/wp-admin/profile.php">'.$user_identity.'</a>'); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php echo attribute_escape(__('Log out of this account')); ?>"><?php _e('Log out »'); ?></a></p>60 <p><?php printf(__('Logged in as %s.'), '<a href="'.get_option('siteurl').'/wp-admin/profile.php">'.$user_identity.'</a>'); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php echo attribute_escape(__('Log out of this account')); ?>"><?php _e('Log out »'); ?></a></p> 61 61 <?php else : ?> 62 62 <p> -
trunk/wp-content/themes/classic/comments.php
r6006 r6343 43 43 <?php if ( $user_ID ) : ?> 44 44 45 <p><?php printf(__('Logged in as %s.'), '<a href="'.get_option('siteurl').'/wp-admin/profile.php">'.$user_identity.'</a>'); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>"><?php _e('Log out »'); ?></a></p>45 <p><?php printf(__('Logged in as %s.'), '<a href="'.get_option('siteurl').'/wp-admin/profile.php">'.$user_identity.'</a>'); ?> <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>"><?php _e('Log out »'); ?></a></p> 46 46 47 47 <?php else : ?> -
trunk/wp-content/themes/default/comments-popup.php
r6026 r6343 58 58 <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> 59 59 <?php if ( $user_ID ) : ?> 60 <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Log out »</a></p>60 <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Log out »</a></p> 61 61 <?php else : ?> 62 62 <p> -
trunk/wp-content/themes/default/comments.php
r6006 r6343 74 74 <?php if ( $user_ID ) : ?> 75 75 76 <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Log out »</a></p>76 <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Log out »</a></p> 77 77 78 78 <?php else : ?> -
trunk/wp-includes/general-template.php
r6296 r6343 32 32 function wp_loginout() { 33 33 if ( ! is_user_logged_in() ) 34 $link = '<a href="' . get_option('siteurl') . '/wp-login.php">' . __('Log in') . '</a>';34 $link = '<a href="' . get_option('siteurl') . '/wp-login.php">' . __('Log in') . '</a>'; 35 35 else 36 $link = '<a href="' . get_option('siteurl') . '/wp-login.php?action=logout">' . __('Log out') . '</a>';36 $link = '<a href="' . get_option('siteurl') . '/wp-login.php?action=logout">' . __('Log out') . '</a>'; 37 37 38 38 echo apply_filters('loginout', $link); -
trunk/wp-login.php
r6168 r6343 153 153 <ul> 154 154 <?php if (get_option('users_can_register')) : ?> 155 <li><a href="<?php bloginfo('wpurl'); ?>/wp-login.php"><?php _e('Login') ?></a></li> 155 <li><a href="<?php bloginfo('url'); ?>/" title="<?php _e('Are you lost?') ?>"><?php printf(__('Back to %s'), get_bloginfo('title', 'display' )); ?></a></li> 156 <li><a href="<?php bloginfo('wpurl'); ?>/wp-login.php"><?php _e('Log in') ?></a></li> 156 157 <li><a href="<?php bloginfo('wpurl'); ?>/wp-login.php?action=register"><?php _e('Register') ?></a></li> 157 <li><a href="<?php bloginfo('url'); ?>/" title="<?php _e('Are you lost?') ?>"><?php printf(__('Back to %s'), get_bloginfo('title', 'display' )); ?></a></li>158 158 <?php else : ?> 159 159 <li><a href="<?php bloginfo('url'); ?>/" title="<?php _e('Are you lost?') ?>"><?php printf(__('Back to %s'), get_bloginfo('title', 'display' )); ?></a></li> 160 <li><a href="<?php bloginfo('wpurl'); ?>/wp-login.php"><?php _e('Log in') ?></a></li>160 <li><a href="<?php bloginfo('wpurl'); ?>/wp-login.php"><?php _e('Log in') ?></a></li> 161 161 <?php endif; ?> 162 162 </ul> … … 275 275 276 276 <ul> 277 <li><a href="<?php bloginfo('wpurl'); ?>/wp-login.php"><?php _e('Login') ?></a></li> 277 <li><a href="<?php bloginfo('url'); ?>/" title="<?php _e('Are you lost?') ?>"><?php printf(__('Back to %s'), get_bloginfo('title', 'display')); ?></a></li> 278 <li><a href="<?php bloginfo('wpurl'); ?>/wp-login.php"><?php _e('Log in') ?></a></li> 278 279 <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> 279 <li><a href="<?php bloginfo('url'); ?>/" title="<?php _e('Are you lost?') ?>"><?php printf(__('Back to %s'), get_bloginfo('title', 'display')); ?></a></li>280 280 </ul> 281 281 … … 363 363 <p><label><input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="90" /> <?php _e('Remember me'); ?></label></p> 364 364 <p class="submit"> 365 <input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Log in'); ?> »" tabindex="100" />365 <input type="submit" name="wp-submit" id="wp-submit" value="<?php _e('Log in'); ?> »" tabindex="100" /> 366 366 <input type="hidden" name="redirect_to" value="<?php echo attribute_escape($redirect_to); ?>" /> 367 367 </p>
Note: See TracChangeset
for help on using the changeset viewer.