diff --git a/wp-includes/version.php b/wp-includes/version.php index ccbef06972..be27f7444f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-46835'; +$wp_version = '5.4-alpha-46837'; /** * 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 1ba80ede4e..7c2c5a5a02 100644 --- a/wp-login.php +++ b/wp-login.php @@ -602,11 +602,12 @@ switch ( $action ) { /** * Filters the interval for redirecting the user to the admin email confirmation screen. + * * If `0` (zero) is returned, the user will not be redirected. * * @since 5.3.0 * - * @param int $interval Interval time (in seconds). + * @param int $interval Interval time (in seconds). Default is 6 months. */ $admin_email_check_interval = (int) apply_filters( 'admin_email_check_interval', 6 * MONTH_IN_SECONDS ); @@ -621,12 +622,13 @@ switch ( $action ) { login_header( __( 'Confirm your administration email' ), '', $errors ); /** - * Fires before the admin email confirm form. - * - * @since 5.3.0 - * - * @param WP_Error $errors A `WP_Error` object containing any errors generated by using invalid credentials. Note that the error object may not contain any errors. - */ + * Fires before the admin email confirm form. + * + * @since 5.3.0 + * + * @param WP_Error $errors A `WP_Error` object containing any errors generated by using invalid + * credentials. Note that the error object may not contain any errors. + */ do_action( 'admin_email_confirm', $errors ); ?> @@ -634,10 +636,10 @@ switch ( $action ) {