From 92a7e547c5c6f73d64791c9d5e3fb701fcc224ad Mon Sep 17 00:00:00 2001 From: westi Date: Sun, 6 Jan 2008 10:26:40 +0000 Subject: [PATCH] You are now logged out. Fixes #4754 props spencerp. git-svn-id: http://svn.automattic.com/wordpress/trunk@6566 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 b92b7e87d..bf4c80236 100644 --- a/wp-login.php +++ b/wp-login.php @@ -340,7 +340,7 @@ default: $errors['user_pass'] = __('ERROR: The password field is empty.'); // Some parts of this script use the main login form to display a message - if ( TRUE == $_GET['loggedout'] ) $errors['loggedout'] = __('Successfully logged you out.'); + if ( TRUE == $_GET['loggedout'] ) $errors['loggedout'] = __('You are now logged out.'); elseif ( 'disabled' == $_GET['registration'] ) $errors['registerdiabled'] = __('User registration is currently not allowed.'); elseif ( 'confirm' == $_GET['checkemail'] ) $errors['confirm'] = __('Check your e-mail for the confirmation link.'); elseif ( 'newpass' == $_GET['checkemail'] ) $errors['newpass'] = __('Check your e-mail for your new password.');