Skip to content

Commit 0d52263

Browse files
Code Quality: Remove extra leading space in the class attribute in login_header().
Follow-up to [28096]. Props opurockey. Fixes #64673. git-svn-id: https://develop.svn.wordpress.org/trunk@61775 602fd350-edb4-49c9-b593-d223f7449a82
1 parent b00dde1 commit 0d52263

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/wp-login.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ function login_header( $title = null, $message = '', $wp_error = null ) {
184184
}
185185
}
186186

187-
$classes[] = ' locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) );
187+
$classes[] = 'locale-' . sanitize_html_class( strtolower( str_replace( '_', '-', get_locale() ) ) );
188188

189189
/**
190190
* Filters the login page body classes.

0 commit comments

Comments
 (0)