From fb5997f2067abe77c6b297c8b05e680720c22232 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Fri, 11 Dec 2015 16:00:36 +0000 Subject: [PATCH] Administration: Improve the message displayed in the login form modal when a user's session has expired. Props obrienlabs. Fixes #34340. git-svn-id: https://develop.svn.wordpress.org/trunk@35865 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-login.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-login.php b/src/wp-login.php index b1cfa42521..06603ee124 100644 --- a/src/wp-login.php +++ b/src/wp-login.php @@ -834,7 +834,7 @@ default: if ( $interim_login ) { if ( ! $errors->get_error_code() ) - $errors->add('expired', __('Session expired. Please log in again. You will not move away from this page.'), 'message'); + $errors->add( 'expired', __( 'Your session has expired. Please log in to continue where you left off.' ), 'message' ); } else { // Some parts of this script use the main login form to display a message if ( isset($_GET['loggedout']) && true == $_GET['loggedout'] )