Make WordPress Core


Ignore:
Timestamp:
12/16/2010 09:18:28 AM (14 years ago)
Author:
nacin
Message:

Replace check_permissions() with ajax_user_can(). New method returns true/false to current_user_can(), which we then handle in admin ajax. see #15326.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-plugin-install-list-table.php

    r16734 r16992  
    99class WP_Plugin_Install_List_Table extends WP_List_Table {
    1010
    11     function check_permissions() {
    12         if ( ! current_user_can('install_plugins') )
    13             wp_die(__('You do not have sufficient permissions to install plugins on this site.'));
     11    function ajax_user_can() {
     12        return current_user_can('install_plugins');
    1413    }
    1514
Note: See TracChangeset for help on using the changeset viewer.