mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-12 13:44:21 +01:00
Initialize message before concat.
git-svn-id: http://svn.automattic.com/wordpress/trunk@2658 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ee2a1df296
commit
e01bad86bc
@ -98,7 +98,7 @@ do_action('retrieve_password', $user_login);
|
|||||||
$key = substr( md5( uniqid( microtime() ) ), 0, 50);
|
$key = substr( md5( uniqid( microtime() ) ), 0, 50);
|
||||||
// now insert the new pass md5'd into the db
|
// now insert the new pass md5'd into the db
|
||||||
$wpdb->query("UPDATE $wpdb->users SET user_activation_key = '$key' WHERE user_login = '$user_login'");
|
$wpdb->query("UPDATE $wpdb->users SET user_activation_key = '$key' WHERE user_login = '$user_login'");
|
||||||
$message .= __('Someone has asked to reset the password for the following site and username.') . "\r\n\r\n";
|
$message = __('Someone has asked to reset the password for the following site and username.') . "\r\n\r\n";
|
||||||
$message .= get_option('siteurl') . "\r\n\r\n";
|
$message .= get_option('siteurl') . "\r\n\r\n";
|
||||||
$message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
|
$message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n";
|
||||||
$message .= __('To reset your password visit the following address, otherwise just ignore this email and nothing will happen.') . "\r\n\r\n";
|
$message .= __('To reset your password visit the following address, otherwise just ignore this email and nothing will happen.') . "\r\n\r\n";
|
||||||
|
Loading…
Reference in New Issue
Block a user