Make WordPress Core


Ignore:
Timestamp:
02/09/2012 05:20:26 PM (13 years ago)
Author:
ryan
Message:

Infinite scroll for themes.php and theme-install.php. Bump per page limit for themes.php to 999. Props helenyhou, DH-Shredder. see #19815

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/class-wp-theme-install-list-table.php

    r19857 r19887  
    99 */
    1010class WP_Theme_Install_List_Table extends WP_List_Table {
     11
     12    function __construct() {
     13        parent::__construct( array(
     14            'ajax' => true,
     15        ) );
     16    }
    1117
    1218    function ajax_user_can() {
     
    129135    function display() {
    130136
    131         // wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
     137        wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
    132138?>
    133139        <div class="tablenav top themes">
Note: See TracChangeset for help on using the changeset viewer.