--- a/web/wp-admin/network/themes.php Wed Dec 19 12:35:13 2012 -0800
+++ b/web/wp-admin/network/themes.php Wed Dec 19 17:46:52 2012 -0800
@@ -13,11 +13,6 @@
if ( ! is_multisite() )
wp_die( __( 'Multisite support is not enabled.' ) );
-$menu_perms = get_site_option( 'menu_items', array() );
-
-if ( empty( $menu_perms['themes'] ) && ! 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.' ) );
@@ -181,10 +176,21 @@
exit;
} // Endif verify-delete
- foreach ( $themes as $theme )
- $delete_result = delete_theme( $theme, esc_url( add_query_arg( array('verify-delete' => 1), $_SERVER['REQUEST_URI'] ) ) );
+ foreach ( $themes as $theme ) {
+ $delete_result = delete_theme( $theme, esc_url( add_query_arg( array(
+ 'verify-delete' => 1,
+ 'action' => 'delete-selected',
+ 'checked' => $_REQUEST['checked'],
+ '_wpnonce' => $_REQUEST['_wpnonce']
+ ), network_admin_url( 'themes.php' ) ) ) );
+ }
+
$paged = ( $_REQUEST['paged'] ) ? $_REQUEST['paged'] : 1;
- wp_redirect( network_admin_url( "themes.php?deleted=".count( $themes )."&paged=$paged&s=$s" ) );
+ wp_redirect( add_query_arg( array(
+ 'deleted' => count( $themes ),
+ 'paged' => $paged,
+ 's' => $s
+ ), network_admin_url( 'themes.php' ) ) );
exit;
break;
}