From 61ed7260675dcb89f4757dc559c43a94ea06776b Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Fri, 24 May 2019 22:53:54 +0000 Subject: [PATCH] Mail: Use the standardised spelling of `email` in the password reset error message. Fixes #39110 Built from https://develop.svn.wordpress.org/trunk@45405 git-svn-id: http://core.svn.wordpress.org/trunk@45216 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 a3d548d864..f644938a04 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-alpha-45404'; +$wp_version = '5.3-alpha-45405'; /** * 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 ab051d244e..76f0585e2c 100644 --- a/wp-login.php +++ b/wp-login.php @@ -431,7 +431,7 @@ function retrieve_password() { $errors->add( 'retrieve_password_email_failure', sprintf( - __( 'ERROR: The e-mail could not be sent. Your site may not be correctly configured to send e-mails. Get support for resetting your password.' ), + __( 'ERROR: The email could not be sent. Your site may not be correctly configured to send emails. Get support for resetting your password.' ), esc_url( $support ) ) );