Changeset 29205 for trunk/src/wp-login.php
- Timestamp:
- 07/17/2014 09:11:46 AM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-login.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-login.php
r29030 r29205 70 70 wp_admin_css( 'login', true ); 71 71 72 // Remove all stored post data on logging out. 73 // This could be added by add_action('login_head'...) like wp_shake_js() 74 // but maybe better if it's not removable by plugins 72 /* 73 * Remove all stored post data on logging out. 74 * This could be added by add_action('login_head'...) like wp_shake_js(), 75 * but maybe better if it's not removable by plugins 76 */ 75 77 if ( 'loggedout' == $wp_error->get_error_code() ) { 76 78 ?> … … 297 299 } 298 300 299 // redefining user_login ensures we return the right case in the email301 // Redefining user_login ensures we return the right case in the email. 300 302 $user_login = $user_data->user_login; 301 303 $user_email = $user_data->user_email; … … 310 312 */ 311 313 do_action( 'retreive_password', $user_login ); 314 312 315 /** 313 316 * Fires before a new password is retrieved. … … 365 368 $blogname = $GLOBALS['current_site']->site_name; 366 369 else 367 // The blogname option is escaped with esc_html on the way into the database in sanitize_option 368 // we want to reverse this for the plain text arena of emails. 370 /* 371 * The blogname option is escaped with esc_html on the way into the database 372 * in sanitize_option we want to reverse this for the plain text arena of emails. 373 */ 369 374 $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES); 370 375
Note: See TracChangeset
for help on using the changeset viewer.