From ce6b055cf8d6afa9deb8e97d6d24b30f0a53511e Mon Sep 17 00:00:00 2001 From: scribu Date: Tue, 12 Oct 2010 17:22:05 +0000 Subject: [PATCH] Improve password reset email copy. See #5919 git-svn-id: http://svn.automattic.com/wordpress/trunk@15776 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-login.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-login.php b/wp-login.php index 08d95c87c..7013a932c 100644 --- a/wp-login.php +++ b/wp-login.php @@ -211,10 +211,11 @@ function retrieve_password() { // Now insert the new md5 key into the db $wpdb->update($wpdb->users, array('user_activation_key' => $key), array('user_login' => $user_login)); } - $message = __('Someone has asked to reset the password for the following site and username.') . "\r\n\r\n"; + $message = __('Someone requested that the password be reset for the following account:') . "\r\n\r\n"; $message .= network_site_url() . "\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 .= __('If this was a mistake, just ignore this email and nothing will happen.') . "\r\n\r\n"; + $message .= __('To reset your password, visit the following address:') . "\r\n\r\n"; $message .= network_site_url("wp-login.php?action=rp&key=$key&login=" . rawurlencode($user_login), 'login') . "\r\n"; if ( is_multisite() )