Make WordPress Core

Ticket #25360: 25360.patch

File 25360.patch, 980 bytes (added by juliobox, 9 years ago)
  • class-wp-ms-users-list-table.php

     
    7676                $mode = empty( $_REQUEST['mode'] ) ? 'list' : $_REQUEST['mode'];
    7777
    7878                // Query the user IDs for this page
     79                $args = apply_filters( 'users_list_table_args', $args );
    7980                $wp_user_search = new WP_User_Query( $args );
    8081
    8182                $this->items = $wp_user_search->get_results();
  • class-wp-users-list-table.php

     
    108108                        $args['order'] = $_REQUEST['order'];
    109109
    110110                // Query the user IDs for this page
     111                $args = apply_filters( 'users_list_table_args', $args );
    111112                $wp_user_search = new WP_User_Query( $args );
    112113
    113114                $this->items = $wp_user_search->get_results();