From d76925ec0f4457f3b431a1c1bde570d6cb35671f Mon Sep 17 00:00:00 2001 From: westi Date: Wed, 15 Dec 2010 19:24:42 +0000 Subject: [PATCH] More caps back. See #15326 git-svn-id: http://svn.automattic.com/wordpress/trunk@16970 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/network/site-themes.php | 10 ++++++++++ wp-admin/network/themes.php | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/wp-admin/network/site-themes.php b/wp-admin/network/site-themes.php index 3c47634e8..3c8c21305 100644 --- a/wp-admin/network/site-themes.php +++ b/wp-admin/network/site-themes.php @@ -13,6 +13,16 @@ require_once( './admin.php' ); if ( ! is_multisite() ) wp_die( __( 'Multisite support is not enabled.' ) ); +$menu_perms = get_site_option( 'menu_items', array() ); + +if ( empty( $menu_perms['themes'] ) ) { + if ( !is_super_admin() ) + wp_die( __( 'Cheatin’ uh?' ) ); +} + +if ( !current_user_can('manage_sites') ) + wp_die( __( 'You do not have sufficient permissions to manage themes for this site.' ) ); + $wp_list_table = get_list_table('WP_MS_Themes_List_Table'); $wp_list_table->check_permissions(); diff --git a/wp-admin/network/themes.php b/wp-admin/network/themes.php index 08a335666..cb3aa45a6 100644 --- a/wp-admin/network/themes.php +++ b/wp-admin/network/themes.php @@ -13,6 +13,16 @@ require_once( './admin.php' ); if ( ! is_multisite() ) wp_die( __( 'Multisite support is not enabled.' ) ); +$menu_perms = get_site_option( 'menu_items', array() ); + +if ( empty( $menu_perms['themes'] ) ) { + if ( !is_super_admin() ) + wp_die( __( 'Cheatin’ uh?' ) ); +} + +if ( !current_user_can('manage_network_themes') ) + wp_die( __( 'You do not have sufficient permissions to manage network themes.' ) ); + $wp_list_table = get_list_table('WP_MS_Themes_List_Table'); $wp_list_table->check_permissions();