From 83f8654283461bc4fc2910f183fe39dc17ad64ad Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 4 Jul 2020 22:01:08 +0000 Subject: [PATCH] Login and Registration: Set a more appropriate page title for the "check your email" step of new user registration or password reset. Follow-up to [48304]. See #40605, #41514. git-svn-id: https://develop.svn.wordpress.org/trunk@48305 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-login.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-login.php b/src/wp-login.php index bad0be4cb3..590711cac7 100644 --- a/src/wp-login.php +++ b/src/wp-login.php @@ -506,8 +506,8 @@ $default_actions = array( 'rp', 'register', 'checkemail', - 'login', 'confirmaction', + 'login', WP_Recovery_Mode_Link_Service::LOGIN_ACTION_ENTERED, ); @@ -1164,7 +1164,7 @@ switch ( $action ) { /** This action is documented in wp-login.php */ $errors = apply_filters( 'wp_login_errors', $errors, $redirect_to ); - login_header( __( 'Log In' ), '', $errors ); + login_header( __( 'Check your email' ), '', $errors ); login_footer(); break;