From d8a4c4f178b7f16462423a2bdd182b62a22c8709 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 12 Mar 2008 22:21:14 +0000 Subject: [PATCH] Action oriented text for expired session notice. Props lloydbudd. fixes #6193 git-svn-id: https://develop.svn.wordpress.org/trunk@7268 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/user.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/user.php b/wp-includes/user.php index 972aadd0d3..d1cadfa714 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -26,7 +26,7 @@ function wp_signon( $credentials = '' ) { return new WP_User($user); if ( !empty($_COOKIE[AUTH_COOKIE]) ) - return new WP_Error('expired_session', __('Your session has expired.')); + return new WP_Error('expired_session', __('Please log in again.')); // If the cookie is not set, be silent. return new WP_Error();