From 788ea5ba5aedc151a38ef7bd080f6d833b6dbdbb Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 6 Nov 2015 22:36:25 +0000 Subject: [PATCH] Reset Password: Improve wording for a string used in password reset email. Props obrienlabs. Fixes #34605. Built from https://develop.svn.wordpress.org/trunk@35559 git-svn-id: http://core.svn.wordpress.org/trunk@35523 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-login.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index 0c6be02e36..20216e76f7 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-beta3-35558'; +$wp_version = '4.4-beta3-35559'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-login.php b/wp-login.php index 6500fd968d..ea3afc6c45 100644 --- a/wp-login.php +++ b/wp-login.php @@ -319,7 +319,7 @@ function retrieve_password() { return $key; } - $message = __('Someone requested that the password be reset for the following account:') . "\r\n\r\n"; + $message = __('Someone has requested a password reset for the following account:') . "\r\n\r\n"; $message .= network_home_url( '/' ) . "\r\n\r\n"; $message .= sprintf(__('Username: %s'), $user_login) . "\r\n\r\n"; $message .= __('If this was a mistake, just ignore this email and nothing will happen.') . "\r\n\r\n";