Make WordPress Core


Ignore:
Timestamp:
08/22/2010 11:22:46 AM (14 years ago)
Author:
scribu
Message:

replace $table with $wp_list_table. See #14651

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/users.php

    r15496 r15519  
    1515require_once( './includes/default-list-tables.php' );
    1616
    17 $table = new WP_Users_Table;
    18 $table->check_permissions();
     17$wp_list_table = new WP_Users_Table;
     18$wp_list_table->check_permissions();
    1919
    2020$title = __('Users');
     
    309309    }
    310310
    311     $table->prepare_items();
     311    $wp_list_table->prepare_items();
    312312
    313313    include('./admin-header.php');
     
    413413
    414414<form id="posts-filter" action="" method="post">
    415 <?php $table->display(); ?>
     415<?php $wp_list_table->display(); ?>
    416416</form>
    417417
Note: See TracChangeset for help on using the changeset viewer.