Make WordPress Core


Ignore:
Timestamp:
12/16/2010 08:43:22 AM (16 years ago)
Author:
nacin
Message:

Remove check_permissions() calls outside of AJAX context. Also only check for switch_themes in check_permissions() for the themes table. see #15326.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/theme-install.php

    r16900 r16990  
    1212/** WordPress Administration Bootstrap */
    1313require_once('./admin.php');
     14
    1415if ( ! current_user_can('install_themes') )
    1516        wp_die( __( 'You do not have sufficient permissions to install themes on this site.' ) );
     
    2122
    2223$wp_list_table = get_list_table('WP_Theme_Install_List_Table');
    23 $wp_list_table->check_permissions();
    2424$wp_list_table->prepare_items();
    2525
Note: See TracChangeset for help on using the changeset viewer.