Coding Standards: Remove unwanted whitespaces after [52404].
Follow-up to [52404]. See #54675. Built from https://develop.svn.wordpress.org/trunk@52405 git-svn-id: http://core.svn.wordpress.org/trunk@51997 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d0b3567730
commit
5e08149bf4
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.9-beta3-52404';
|
$wp_version = '5.9-beta3-52405';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
16
wp-login.php
16
wp-login.php
|
@ -329,12 +329,12 @@ function login_footer( $input_id = '' ) {
|
||||||
?>
|
?>
|
||||||
<div class="language-switcher">
|
<div class="language-switcher">
|
||||||
<form id="language-switcher" action="" method="get">
|
<form id="language-switcher" action="" method="get">
|
||||||
|
|
||||||
<label for="language-switcher-locales">
|
<label for="language-switcher-locales">
|
||||||
<span class="dashicons dashicons-translation" aria-hidden="true"></span>
|
<span class="dashicons dashicons-translation" aria-hidden="true"></span>
|
||||||
<span class="screen-reader-text"><?php _e( 'Language' ); ?></span>
|
<span class="screen-reader-text"><?php _e( 'Language' ); ?></span>
|
||||||
</label>
|
</label>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
$args = array(
|
$args = array(
|
||||||
'id' => 'language-switcher-locales',
|
'id' => 'language-switcher-locales',
|
||||||
|
@ -344,7 +344,7 @@ function login_footer( $input_id = '' ) {
|
||||||
'explicit_option_en_us' => true,
|
'explicit_option_en_us' => true,
|
||||||
'languages' => $languages,
|
'languages' => $languages,
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filters default arguments for the Languages select input on the login screen.
|
* 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 ) );
|
wp_dropdown_languages( apply_filters( 'wp_login_language_switcher_args', $args ) );
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<?php if ( $interim_login ) { ?>
|
<?php if ( $interim_login ) { ?>
|
||||||
<input type="hidden" name="interim-login" value="1" />
|
<input type="hidden" name="interim-login" value="1" />
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<?php if ( isset( $_GET['redirect_to'] ) && '' !== $_GET['redirect_to'] ) { ?>
|
<?php if ( isset( $_GET['redirect_to'] ) && '' !== $_GET['redirect_to'] ) { ?>
|
||||||
<input type="hidden" name="redirect_to" value="<?php echo esc_url_raw( $_GET['redirect_to'] ); ?>" />
|
<input type="hidden" name="redirect_to" value="<?php echo esc_url_raw( $_GET['redirect_to'] ); ?>" />
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<?php if ( isset( $_GET['action'] ) && '' !== $_GET['action'] ) { ?>
|
<?php if ( isset( $_GET['action'] ) && '' !== $_GET['action'] ) { ?>
|
||||||
<input type="hidden" name="action" value="<?php echo esc_attr( $_GET['action'] ); ?>" />
|
<input type="hidden" name="action" value="<?php echo esc_attr( $_GET['action'] ); ?>" />
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<input type="submit" class="button button-primary" value="<?php esc_attr_e( 'Change' ); ?>">
|
<input type="submit" class="button button-primary" value="<?php esc_attr_e( 'Change' ); ?>">
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
Loading…
Reference in New Issue