From 5cdaeb2093fbad260c5f2e5f148c197154682d8c Mon Sep 17 00:00:00 2001 From: opurockey Date: Fri, 20 Feb 2026 04:13:09 +0600 Subject: [PATCH] Removed unnecessary leading space at class in wp-login.php --- 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 52b4f90673da9..abedea82c3589 100644 --- a/src/wp-login.php +++ b/src/wp-login.php @@ -184,7 +184,7 @@ function login_header( $title = null, $message = '', $wp_error = null ) { } } - $classes[] = ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) ); + $classes[] = 'locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) ); /** * Filters the login page body classes.