From ef9f9c1a24aed6710af391dc066d77a198c3afb4 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Wed, 1 Jul 2015 18:15:42 +0000 Subject: [PATCH] Fix small typo from [33019]. see #32429 git-svn-id: https://develop.svn.wordpress.org/trunk@33034 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-login.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-login.php b/src/wp-login.php index c40c9b4d3d..9f63e7e3f8 100644 --- a/src/wp-login.php +++ b/src/wp-login.php @@ -529,7 +529,7 @@ case 'retrievepassword' : if ( isset( $_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'] ) { $errors->add( 'expiredkey', __( 'Your password reset link has expired. Please request a new link below.' ) ); }