From 04793dce341e474dc16429150ee2a318df1ad305 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Wed, 1 Jul 2015 18:16:24 +0000 Subject: [PATCH] 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 --- 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 eb45a4af6c..c70c08ba91 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @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. diff --git a/wp-login.php b/wp-login.php index c40c9b4d3d..9f63e7e3f8 100644 --- a/wp-login.php +++ b/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.' ) ); }