Fix small typo from [33019].
see #32429 Built from https://develop.svn.wordpress.org/trunk@33034 git-svn-id: http://core.svn.wordpress.org/trunk@33005 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
504101460f
commit
04793dce34
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.3-alpha-33033';
|
$wp_version = '4.3-alpha-33034';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
|
@ -529,7 +529,7 @@ case 'retrievepassword' :
|
||||||
|
|
||||||
if ( isset( $_GET['error'] ) ) {
|
if ( isset( $_GET['error'] ) ) {
|
||||||
if ( 'invalidkey' == $_GET['error'] ) {
|
if ( 'invalidkey' == $_GET['error'] ) {
|
||||||
$errors->add( 'invalidkey', __( 'Your password reset link appears to be invalid. Please request a new lnk below.' ) );
|
$errors->add( 'invalidkey', __( 'Your password reset link appears to be invalid. Please request a new link below.' ) );
|
||||||
} elseif ( 'expiredkey' == $_GET['error'] ) {
|
} elseif ( 'expiredkey' == $_GET['error'] ) {
|
||||||
$errors->add( 'expiredkey', __( 'Your password reset link has expired. Please request a new link below.' ) );
|
$errors->add( 'expiredkey', __( 'Your password reset link has expired. Please request a new link below.' ) );
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue