Make WordPress Core


Ignore:
Timestamp:
11/08/2021 11:02:40 PM (3 years ago)
Author:
joedolson
Message:

Coding Standards: PHP Code style errors.

Fixes coding standards issues.

Follow up to [52058].

See #43700.

File:
1 edited

Legend:

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

    r52058 r52060  
    315315    $languages = get_available_languages();
    316316
    317     if ( ! empty( $languages ) && ! $interim_login ) { ?>
     317    if ( ! empty( $languages ) && ! $interim_login ) {
     318        ?>
    318319
    319320        <div class="language-switcher">
     
    326327
    327328                <?php
    328                     $args = array(
    329                         'id'                          => 'language-switcher-locales',
    330                         'name'                        => 'wp_lang',
    331                         'selected'                    => determine_locale(),
    332                         'show_available_translations' => false,
    333                         'explicit_option_en_us'       => true,
    334                         'languages'                   => $languages,
    335                     );
    336 
    337                     /**
    338                     * Filters default arguments for the Languages select input on the login screen.
    339                     *
    340                     * @since 5.9.0
    341                     *
    342                     * @param array $args Arguments for the Languages select input on the login screen.
    343                     */
    344                     wp_dropdown_languages( apply_filters( 'wp_login_language_switcher_args', $args ) );
     329                $args = array(
     330                    'id'                          => 'language-switcher-locales',
     331                    'name'                        => 'wp_lang',
     332                    'selected'                    => determine_locale(),
     333                    'show_available_translations' => false,
     334                    'explicit_option_en_us'       => true,
     335                    'languages'                   => $languages,
     336                );
     337
     338                /**
     339                * Filters default arguments for the Languages select input on the login screen.
     340                *
     341                * @since 5.9.0
     342                *
     343                * @param array $args Arguments for the Languages select input on the login screen.
     344                */
     345                wp_dropdown_languages( apply_filters( 'wp_login_language_switcher_args', $args ) );
    345346                ?>
    346347
Note: See TracChangeset for help on using the changeset viewer.