diff --git a/wp-admin/includes/class-wp-comments-list-table.php b/wp-admin/includes/class-wp-comments-list-table.php index c489efee7b..ccfa0994c8 100644 --- a/wp-admin/includes/class-wp-comments-list-table.php +++ b/wp-admin/includes/class-wp-comments-list-table.php @@ -309,8 +309,6 @@ class WP_Comments_List_Table extends WP_List_Table { } function display() { - extract( $this->_args ); - wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); $this->display_tablenav( 'top' ); @@ -598,13 +596,18 @@ class WP_Post_Comments_List_Table extends WP_Comments_List_Table { } function display( $output_empty = false ) { - extract( $this->_args ); + $singular = $this->_args['singular']; wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); ?> - > - display_rows_or_placeholder(); ?> + > + display_rows_or_placeholder(); + } ?>