Make WordPress Core


Ignore:
Timestamp:
01/16/2011 09:47:24 PM (14 years ago)
Author:
nacin
Message:

Remove AJAX from list tables. first pass. see #16262.

File:
1 edited

Legend:

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

    r17262 r17322  
    1414 * @subpackage List_Table
    1515 * @since 3.1.0
     16 * @access private
    1617 */
    1718class WP_Comments_List_Table extends WP_List_Table {
     
    267268        extract( $this->_args );
    268269
    269         wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
     270        // wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
    270271
    271272        $this->display_tablenav( 'top' );
     
    510511 * @subpackage List_Table
    511512 * @since 3.1.0
     513 * @access private
    512514 *
    513515 * @see WP_Comments_Table
     
    537539        extract( $this->_args );
    538540
    539         wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
     541        // wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
    540542?>
    541543<table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0" style="display:none;">
Note: See TracChangeset for help on using the changeset viewer.