Changeset 19887 for trunk/wp-admin/includes/class-wp-themes-list-table.php
- Timestamp:
- 02/09/2012 05:20:26 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-themes-list-table.php
r19840 r19887 12 12 var $search = array(); 13 13 var $features = array(); 14 15 function __construct() { 16 parent::__construct( array( 17 'ajax' => true, 18 ) ); 19 } 14 20 15 21 function ajax_user_can() { … … 48 54 uksort( $themes, "strnatcasecmp" ); 49 55 50 $per_page = 24;56 $per_page = 999; 51 57 $page = $this->get_pagenum(); 52 58 … … 102 108 103 109 function display() { 104 //wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );110 wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); 105 111 ?> 106 112 <?php $this->tablenav( 'top' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.