Changeset 28386 for trunk/src/wp-admin/includes/class-wp-list-table.php
- Timestamp:
- 05/13/2014 05:07:11 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r28279 r28386 761 761 */ 762 762 function display() { 763 extract( $this->_args );763 $singular = $this->_args['singular']; 764 764 765 765 $this->display_tablenav( 'top' ); … … 779 779 </tfoot> 780 780 781 <tbody id="the-list"<?php if ( $singular ) echo " data-wp-lists='list:$singular'"; ?>> 781 <tbody id="the-list"<?php 782 if ( $singular ) { 783 echo " data-wp-lists='list:$singular'"; 784 } ?>> 782 785 <?php $this->display_rows_or_placeholder(); ?> 783 786 </tbody>
Note: See TracChangeset
for help on using the changeset viewer.