Make WordPress Core

Changeset 44516


Ignore:
Timestamp:
01/09/2019 12:36:43 PM (6 years ago)
Author:
swissspidy
Message:

Build/Test Tools: Fix coding standards issues after [44515] and [44514].

See #44494, #43743.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/edit-tags.php

    r44515 r44516  
    359359
    360360if ( $can_edit_terms ) {
    361 ?>
     361    ?>
    362362<div id="col-container" class="wp-clearfix">
    363363
     
    365365<div class="col-wrap">
    366366
    367 <?php
     367    <?php
    368368    if ( 'category' == $taxonomy ) {
    369369        /**
     
    617617
    618618if ( $can_edit_terms ) {
    619 ?>
     619    ?>
    620620</div>
    621621</div><!-- /col-right -->
  • trunk/tests/phpunit/tests/l10n.php

    r44514 r44516  
    130130    function test_wp_dropdown_languages_exclude_en_us() {
    131131        $args   = array(
    132             'id'                       => 'foo',
    133             'name'                     => 'bar',
    134             'languages'                => array( 'de_DE' ),
    135             'translations'             => $this->wp_dropdown_languages_filter(),
    136             'selected'                 => 'de_DE',
    137             'echo'                     => false,
    138             'show_option_en_us'        => false,
     132            'id'                => 'foo',
     133            'name'              => 'bar',
     134            'languages'         => array( 'de_DE' ),
     135            'translations'      => $this->wp_dropdown_languages_filter(),
     136            'selected'          => 'de_DE',
     137            'echo'              => false,
     138            'show_option_en_us' => false,
    139139        );
    140140        $actual = wp_dropdown_languages( $args );
Note: See TracChangeset for help on using the changeset viewer.