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/themes.php

    r15496 r15519  
    1212require_once( './includes/default-list-tables.php' );
    1313
    14 $table = new WP_Themes_Table;
    15 $table->check_permissions();
     14$wp_list_table = new WP_Themes_Table;
     15$wp_list_table->check_permissions();
    1616
    1717if ( current_user_can('switch_themes') && isset($_GET['action']) ) {
     
    3131}
    3232
    33 $table->prepare_items();
     33$wp_list_table->prepare_items();
    3434
    3535$title = __('Manage Themes');
     
    106106<h3><?php _e('Available Themes'); ?></h3>
    107107
    108 <?php $table->display(); ?>
     108<?php $wp_list_table->display(); ?>
    109109
    110110<br class="clear" />
Note: See TracChangeset for help on using the changeset viewer.