Fix warnings. see #11644

git-svn-id: http://svn.automattic.com/wordpress/trunk@12802 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2010-01-22 22:28:48 +00:00
parent 4b6278340c
commit 902bfdba21

View File

@ -5,11 +5,10 @@ $title = __('WordPress › Admin › Themes');
$parent_file = 'ms-admin.php'; $parent_file = 'ms-admin.php';
require_once('admin-header.php'); require_once('admin-header.php');
if( is_super_admin() == false ) { if ( !is_super_admin() )
wp_die( __('You do not have permission to access this page.') ); wp_die( __('You do not have permission to access this page.') );
}
if (isset($_GET['updated'])) { if ( isset($_GET['updated']) ) {
?> ?>
<div id="message" class="updated fade"><p><?php _e('Site themes saved.') ?></p></div> <div id="message" class="updated fade"><p><?php _e('Site themes saved.') ?></p></div>
<?php <?php
@ -35,13 +34,14 @@ $allowed_themes = get_site_allowed_themes();
<tbody id="plugins"> <tbody id="plugins">
<?php <?php
$total_theme_count = $activated_themes_count = 0; $total_theme_count = $activated_themes_count = 0;
foreach( (array) $themes as $key => $theme ) { $class = '';
foreach ( (array) $themes as $key => $theme ) {
$total_theme_count++; $total_theme_count++;
$theme_key = wp_specialchars($theme['Stylesheet']); $theme_key = wp_specialchars($theme['Stylesheet']);
$class = ('alt' == $class) ? '' : 'alt'; $class = ('alt' == $class) ? '' : 'alt';
$class1 = $enabled = $disabled = ''; $class1 = $enabled = $disabled = '';
if( isset( $allowed_themes[ $theme_key ] ) == true ) { if ( isset( $allowed_themes[ $theme_key ] ) == true ) {
$enabled = 'checked="checked" '; $enabled = 'checked="checked" ';
$activated_themes_count++; $activated_themes_count++;
$class1 = ' active'; $class1 = ' active';