Make WordPress Core


Ignore:
Timestamp:
12/21/2021 06:58:57 PM (5 years ago)
Author:
audrasjb
Message:

Coding Standards: Remove unwanted whitespaces after [52404].

Follow-up to [52404].

See #54675.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-login.php

    r52404 r52405  
    330330                        <div class="language-switcher">
    331331                                <form id="language-switcher" action="" method="get">
    332        
     332
    333333                                        <label for="language-switcher-locales">
    334334                                                <span class="dashicons dashicons-translation" aria-hidden="true"></span>
    335335                                                <span class="screen-reader-text"><?php _e( 'Language' ); ?></span>
    336336                                        </label>
    337        
     337
    338338                                        <?php
    339339                                        $args = array(
     
    345345                                                'languages'                   => $languages,
    346346                                        );
    347        
     347
    348348                                        /**
    349349                                         * Filters default arguments for the Languages select input on the login screen.
     
    355355                                        wp_dropdown_languages( apply_filters( 'wp_login_language_switcher_args', $args ) );
    356356                                        ?>
    357        
     357
    358358                                        <?php if ( $interim_login ) { ?>
    359359                                                <input type="hidden" name="interim-login" value="1" />
    360360                                        <?php } ?>
    361        
     361
    362362                                        <?php if ( isset( $_GET['redirect_to'] ) && '' !== $_GET['redirect_to'] ) { ?>
    363363                                                <input type="hidden" name="redirect_to" value="<?php echo esc_url_raw( $_GET['redirect_to'] ); ?>" />
    364364                                        <?php } ?>
    365        
     365
    366366                                        <?php if ( isset( $_GET['action'] ) && '' !== $_GET['action'] ) { ?>
    367367                                                <input type="hidden" name="action" value="<?php echo esc_attr( $_GET['action'] ); ?>" />
    368368                                        <?php } ?>
    369        
     369
    370370                                                <input type="submit" class="button button-primary" value="<?php esc_attr_e( 'Change' ); ?>">
    371        
     371
    372372                                        </form>
    373373                                </div>
Note: See TracChangeset for help on using the changeset viewer.