diff --git a/wp-admin/themes.php b/wp-admin/themes.php index 6e53ece07..a8424ed7d 100644 --- a/wp-admin/themes.php +++ b/wp-admin/themes.php @@ -56,7 +56,7 @@ $title = __('Manage Themes'); $parent_file = 'themes.php'; $help = '

' . __('Themes give your WordPress style. Once a theme is installed, you may preview it, activate it or deactivate it here.') . '

'; -if ( ( !is_multisite() && current_user_can('install_themes') ) || is_super_admin() ) { +if ( current_user_can('install_themes') ) { $help .= '

' . sprintf(__('You can find additional themes for your site by using the new Theme Browser/Installer functionality or by browsing the WordPress Theme Directory directly and installing manually. To install a theme manually, upload its ZIP archive with the new uploader or copy its folder via FTP into your wp-content/themes directory.'), 'theme-install.php', 'theme-install.php?tab=upload' ) . '

'; $help .= '

' . __('Once a theme is uploaded, you should see it on this page.') . '

' ; } @@ -249,7 +249,7 @@ foreach ( $cols as $col => $theme_name ) { $actions = array(); $actions[] = '' . __('Activate') . ''; $actions[] = '' . __('Preview') . ''; - if ( ( !is_multisite() && current_user_can('update_themes') ) || is_super_admin() ) + if ( current_user_can('update_themes') ) $actions[] = '' . __('Delete') . ''; $actions = apply_filters('theme_action_links', $actions, $themes[$theme_name]);