Changeset 17262
- Timestamp:
- 01/11/2011 10:42:22 PM (14 years ago)
- Location:
- trunk/wp-admin/includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-comments-list-table.php
r17228 r17262 267 267 extract( $this->_args ); 268 268 269 wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); 270 269 271 $this->display_tablenav( 'top' ); 270 272 … … 534 536 function display( $output_empty = false ) { 535 537 extract( $this->_args ); 538 539 wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); 536 540 ?> 537 541 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0" style="display:none;"> -
trunk/wp-admin/includes/class-wp-theme-install-list-table.php
r17090 r17262 127 127 128 128 function display() { 129 130 wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); 129 131 ?> 130 132 <div class="tablenav top"> -
trunk/wp-admin/includes/class-wp-themes-list-table.php
r17090 r17262 85 85 86 86 function display() { 87 88 wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); 87 89 ?> 88 90 <div class="tablenav top">
Note: See TracChangeset
for help on using the changeset viewer.