From b23df1e46b27baa35800e00eb68014e6b5b74aec Mon Sep 17 00:00:00 2001 From: nacin Date: Wed, 27 Oct 2010 06:48:01 +0000 Subject: [PATCH] Make a string accurate. props jane, see #5919. git-svn-id: http://svn.automattic.com/wordpress/trunk@15999 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-login.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-login.php b/wp-login.php index cb315d430..979b7955d 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']) : '';