Changeset 26776 for trunk/src/wp-admin/includes/misc.php
- Timestamp:
- 12/07/2013 07:45:57 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/misc.php
r26732 r26776 568 568 569 569 if ( isset( $_wp_admin_css_colors['fresh'] ) ) { 570 // Set 'fresh' (the default option) to be the first array element571 $_wp_admin_css_colors = array_merge( array( 'fresh' => '' ), $_wp_admin_css_colors );570 // Set Default ('fresh') and Light should go first. 571 $_wp_admin_css_colors = array_merge( array( 'fresh' => '', 'light' => '' ), $_wp_admin_css_colors ); 572 572 } 573 573 … … 582 582 <legend class="screen-reader-text"><span><?php _e( 'Admin Color Scheme' ); ?></span></legend> 583 583 <?php 584 584 wp_nonce_field( 'save-color-scheme_' . $user_id, 'color-nonce', false ); 585 585 foreach ( $_wp_admin_css_colors as $color => $color_info ) : 586 586 … … 597 597 foreach ( $color_info->colors as $html_color ) { 598 598 ?> 599 <td style="background-color: <?php echo esc_attr( $html_color ); ?>" title="<?php echo esc_attr( $color ); ?>"> </td>599 <td style="background-color: <?php echo esc_attr( $html_color ); ?>"> </td> 600 600 <?php 601 601 }
Note: See TracChangeset
for help on using the changeset viewer.