Changeset 15519 for trunk/wp-admin/plugins.php
- Timestamp:
- 08/22/2010 11:22:46 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/plugins.php
r15496 r15519 12 12 require_once( ABSPATH . 'wp-admin/includes/default-list-tables.php' ); 13 13 14 $ table = new WP_Plugins_Table;15 $ table->check_permissions();14 $wp_list_table = new WP_Plugins_Table; 15 $wp_list_table->check_permissions(); 16 16 17 17 if ( isset($_POST['clear-recent-list']) ) … … 303 303 update_user_meta( get_current_user_id(), 'plugins_last_view', $status ); 304 304 305 $ table->prepare_items();305 $wp_list_table->prepare_items(); 306 306 307 307 wp_enqueue_script('plugin-install'); … … 439 439 ?> 440 440 441 <?php $ table->display(); ?>441 <?php $wp_list_table->display(); ?> 442 442 </form> 443 443
Note: See TracChangeset
for help on using the changeset viewer.