Coding Standards: Remove unwanted whitespaces after [52404].

Follow-up to [52404].

See #54675.


git-svn-id: https://develop.svn.wordpress.org/trunk@52405 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jb Audras 2021-12-21 18:58:57 +00:00
parent b8f7405450
commit 839a0bcf06

View File

@ -329,12 +329,12 @@ function login_footer( $input_id = '' ) {
?>
<div class="language-switcher">
<form id="language-switcher" action="" method="get">
<label for="language-switcher-locales">
<span class="dashicons dashicons-translation" aria-hidden="true"></span>
<span class="screen-reader-text"><?php _e( 'Language' ); ?></span>
</label>
<?php
$args = array(
'id' => 'language-switcher-locales',
@ -344,7 +344,7 @@ function login_footer( $input_id = '' ) {
'explicit_option_en_us' => true,
'languages' => $languages,
);
/**
* Filters default arguments for the Languages select input on the login screen.
*
@ -354,21 +354,21 @@ function login_footer( $input_id = '' ) {
*/
wp_dropdown_languages( apply_filters( 'wp_login_language_switcher_args', $args ) );
?>
<?php if ( $interim_login ) { ?>
<input type="hidden" name="interim-login" value="1" />
<?php } ?>
<?php if ( isset( $_GET['redirect_to'] ) && '' !== $_GET['redirect_to'] ) { ?>
<input type="hidden" name="redirect_to" value="<?php echo esc_url_raw( $_GET['redirect_to'] ); ?>" />
<?php } ?>
<?php if ( isset( $_GET['action'] ) && '' !== $_GET['action'] ) { ?>
<input type="hidden" name="action" value="<?php echo esc_attr( $_GET['action'] ); ?>" />
<?php } ?>
<input type="submit" class="button button-primary" value="<?php esc_attr_e( 'Change' ); ?>">
</form>
</div>
<?php } ?>