From 04c90b318bfdfcd34ca2b6932cd147ceefc1e92f Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Wed, 27 Oct 2010 06:48:01 +0000 Subject: [PATCH] Make a string accurate. props jane, see #5919. git-svn-id: https://develop.svn.wordpress.org/trunk@15999 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-login.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-login.php b/wp-login.php index cb315d430e..979b7955d8 100644 --- a/wp-login.php +++ b/wp-login.php @@ -421,7 +421,7 @@ case 'retrievepassword' : $redirect_to = apply_filters( 'lostpassword_redirect', !empty( $_REQUEST['redirect_to'] ) ? $_REQUEST['redirect_to'] : '' ); do_action('lost_password'); - login_header(__('Lost Password'), '

' . __('Please enter your username or e-mail address. You will receive a new password via e-mail.') . '

', $errors); + login_header(__('Lost Password'), '

' . __('Please enter your username or email address. You will receive a link to create a new password via email.') . '

', $errors); $user_login = isset($_POST['user_login']) ? stripslashes($_POST['user_login']) : '';