From 0ba0b61ed8e168cae5c362f7e9453946a16ca708 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 4 Jul 2020 22:03:02 +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. Built from https://develop.svn.wordpress.org/trunk@48305 git-svn-id: http://core.svn.wordpress.org/trunk@48074 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-login.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index dd7ce7c95c..0bb187cd3a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.5-alpha-48304'; +$wp_version = '5.5-alpha-48305'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-login.php b/wp-login.php index bad0be4cb3..590711cac7 100644 --- a/wp-login.php +++ b/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;