Changeset 12398 for trunk/wp-login.php
- Timestamp:
- 12/14/2009 10:09:54 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-login.php
r12266 r12398 168 168 $message .= site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . "\r\n"; 169 169 170 $title = sprintf(__('[%s] Password Reset'), get_option('blogname')); 170 // The blogname option is escaped with esc_html on the way into the database in sanitize_option 171 // we want to reverse this for the plain text arena of emails. 172 $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES); 173 174 $title = sprintf(__('[%s] Password Reset'), $blogname); 171 175 172 176 $title = apply_filters('retrieve_password_title', $title); … … 213 217 $message .= site_url('wp-login.php', 'login') . "\r\n"; 214 218 215 $title = sprintf(__('[%s] Your new password'), get_option('blogname')); 219 // The blogname option is escaped with esc_html on the way into the database in sanitize_option 220 // we want to reverse this for the plain text arena of emails. 221 $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES); 222 223 $title = sprintf(__('[%s] Your new password'), $blogname); 216 224 217 225 $title = apply_filters('password_reset_title', $title);
Note: See TracChangeset
for help on using the changeset viewer.