mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 20:30:23 +00:00
Image fixes from andy. see #5911
git-svn-id: https://develop.svn.wordpress.org/trunk@7263 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -157,8 +157,11 @@ include ('admin-header.php');
|
||||
<th scope="row"><?php _e('Admin Color Scheme')?></th>
|
||||
<td>
|
||||
<?php
|
||||
$current_color = get_user_option('admin_color');
|
||||
if ( empty($current_color) )
|
||||
$current_color = 'classic';
|
||||
foreach ( $_wp_admin_css_colors as $color => $color_info ): ?>
|
||||
<label class="color-option"><input name="admin_color" type="radio" value="<?php echo $color ?>" class="tog" <?php checked($color, get_user_option('admin_color')); ?> />
|
||||
<label class="color-option"><input name="admin_color" type="radio" value="<?php echo $color ?>" class="tog" <?php checked($color, $current_color); ?> />
|
||||
<table class="color-palette">
|
||||
<tr>
|
||||
<?php
|
||||
|
||||
Reference in New Issue
Block a user