From 85e815bf00f6a27fbe1ed1fb3e0d3e2a2a7fe040 Mon Sep 17 00:00:00 2001 From: donncha Date: Wed, 16 Apr 2008 14:40:34 +0000 Subject: Applied patch in #590 by momo360modena and fixed a minor bug with blog searching git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@1237 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-admin/wpmu-themes.php | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) (limited to 'wp-admin/wpmu-themes.php') diff --git a/wp-admin/wpmu-themes.php b/wp-admin/wpmu-themes.php index 512b7bb..a6a566c 100644 --- a/wp-admin/wpmu-themes.php +++ b/wp-admin/wpmu-themes.php @@ -22,28 +22,29 @@ $allowed_themes = get_site_allowed_themes();

- +
- - - - - + + + + + - + $theme ) : $theme_key = wp_specialchars($theme['Stylesheet']); - $class = ('alternate' == $class) ? '' : 'alternate'; - $enabled = $disabled = ''; + $class = ('alt' == $class) ? '' : 'alt'; + $class1 = $enabled = $disabled = ''; if( isset( $allowed_themes[ $theme_key ] ) == true ) { $enabled = 'checked="checked" '; + $class1 = ' active'; } else { $disabled = 'checked="checked" '; } ?> - +
    -- cgit