From c6019230fc5a7c2b5ad9d144c78cb0c875fd15db Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 30 Aug 2006 21:02:12 +0000 Subject: [PATCH] Grammar fix. fixes #3026 git-svn-id: http://svn.automattic.com/wordpress/trunk@4143 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 b37606efce..7712d2ebec 100644 --- a/wp-login.php +++ b/wp-login.php @@ -158,7 +158,7 @@ case 'rp' : echo "" . __('Click here to login!') . '

'; // send a copy of password change notification to the admin $message = sprintf(__('Password Lost and Changed for user: %s'), $user->user_login) . "\r\n"; - wp_mail(get_settings('admin_email'), sprintf(__('[%s] Password Lost/Change'), get_settings('blogname')), $message); + wp_mail(get_settings('admin_email'), sprintf(__('[%s] Password Lost/Changed'), get_settings('blogname')), $message); die(); } break;