From 624fcbfdd3b174a33e859d076d1be6889db6996f Mon Sep 17 00:00:00 2001 From: Peter Wilson Date: Thu, 17 Mar 2022 04:55:48 +0000 Subject: [PATCH] Registration/Login: Coding standards fixes for `wp-login.php`. Props alkesh7, Presskopp, audrasjb. Fixes #54746. See #54728. git-svn-id: https://develop.svn.wordpress.org/trunk@52945 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-login.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/wp-login.php b/src/wp-login.php index 5975a3d58f..c0abcb077a 100644 --- a/src/wp-login.php +++ b/src/wp-login.php @@ -422,10 +422,7 @@ function wp_login_viewport_meta() { exists() && $user->has_cap( 'manage_options' ) ) { $admin_email_lifespan = (int) get_option( 'admin_email_lifespan' ); - // If `0` (or anything "falsey" as it is cast to int) is returned, the user will not be redirected - // to the admin email confirmation screen. + /* + * If `0` (or anything "falsey" as it is cast to int) is returned, the user will not be redirected + * to the admin email confirmation screen. + */ /** This filter is documented in wp-login.php */ $admin_email_check_interval = (int) apply_filters( 'admin_email_check_interval', 6 * MONTH_IN_SECONDS );