Changeset 15519 for trunk/wp-admin/themes.php
- Timestamp:
- 08/22/2010 11:22:46 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/themes.php
r15496 r15519 12 12 require_once( './includes/default-list-tables.php' ); 13 13 14 $ table = new WP_Themes_Table;15 $ table->check_permissions();14 $wp_list_table = new WP_Themes_Table; 15 $wp_list_table->check_permissions(); 16 16 17 17 if ( current_user_can('switch_themes') && isset($_GET['action']) ) { … … 31 31 } 32 32 33 $ table->prepare_items();33 $wp_list_table->prepare_items(); 34 34 35 35 $title = __('Manage Themes'); … … 106 106 <h3><?php _e('Available Themes'); ?></h3> 107 107 108 <?php $ table->display(); ?>108 <?php $wp_list_table->display(); ?> 109 109 110 110 <br class="clear" />
Note: See TracChangeset
for help on using the changeset viewer.