From f89ff6c5a067ed88a88c5f310e0fafd73827115f Mon Sep 17 00:00:00 2001 From: ryan 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: http://svn.automattic.com/wordpress/trunk@7268 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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();