Changeset 6287 for sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/list-table/class-plugin-comments.php
- Timestamp:
- 12/19/2017 04:22:37 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/plugin-directory/admin/list-table/class-plugin-comments.php
r2764 r6287 38 38 $singular = $this->_args['singular']; 39 39 40 wp_nonce_field( "fetch-list-". get_class( $this ), '_ajax_fetch_list_nonce' );40 wp_nonce_field( 'fetch-list-' . get_class( $this ), '_ajax_fetch_list_nonce' ); 41 41 ?> 42 42 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" data-comment-type="<?php echo esc_attr( $this->comment_type ); ?>" style="display:none;"> … … 47 47 <tbody id="the-comment-list"<?php if ( $singular ) { echo " data-wp-lists='list:$singular'"; } ?>> 48 48 <?php 49 50 51 49 if ( ! $output_empty ) { 50 $this->display_rows_or_placeholder(); 51 } 52 52 ?> 53 53 </tbody>
Note: See TracChangeset
for help on using the changeset viewer.