Changeset 44516
- Timestamp:
- 01/09/2019 12:36:43 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-tags.php
r44515 r44516 359 359 360 360 if ( $can_edit_terms ) { 361 ?>361 ?> 362 362 <div id="col-container" class="wp-clearfix"> 363 363 … … 365 365 <div class="col-wrap"> 366 366 367 <?php367 <?php 368 368 if ( 'category' == $taxonomy ) { 369 369 /** … … 617 617 618 618 if ( $can_edit_terms ) { 619 ?>619 ?> 620 620 </div> 621 621 </div><!-- /col-right --> -
trunk/tests/phpunit/tests/l10n.php
r44514 r44516 130 130 function test_wp_dropdown_languages_exclude_en_us() { 131 131 $args = array( 132 'id' 133 'name' 134 'languages' 135 'translations' 136 'selected' 137 'echo' 138 'show_option_en_us' 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, 139 139 ); 140 140 $actual = wp_dropdown_languages( $args );
Note: See TracChangeset
for help on using the changeset viewer.