Changeset 20094 for trunk/wp-admin/includes/class-wp-list-table.php
- Timestamp:
- 03/02/2012 10:09:26 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-list-table.php
r19819 r20094 485 485 return; 486 486 487 extract( $this->_pagination_args );487 extract( $this->_pagination_args, EXTR_SKIP ); 488 488 489 489 $output = '<span class="displaying-num">' . sprintf( _n( '1 item', '%s items', $total_items ), number_format_i18n( $total_items ) ) . '</span>'; … … 544 544 ); 545 545 546 $output .= "\n<span class='pagination-links'>" . join( "\n", $page_links ) . '</span>'; 546 $pagination_links_class = 'pagination-links'; 547 if ( ! empty( $infinite_scroll ) ) 548 $pagination_links_class = ' hide-if-js'; 549 $output .= "\n<span class='$pagination_links_class'>" . join( "\n", $page_links ) . '</span>'; 547 550 548 551 if ( $total_pages ) … … 873 876 874 877 extract( $this->_args ); 875 extract( $this->_pagination_args );878 extract( $this->_pagination_args, EXTR_SKIP ); 876 879 877 880 ob_start();
Note: See TracChangeset
for help on using the changeset viewer.