Changeset 17153
- Timestamp:
- 12/26/2010 09:54:52 PM (15 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/includes/class-wp-list-table.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-list-table.php
r17151 r17153 488 488 esc_attr__( 'Go to the first page' ), 489 489 esc_url( remove_query_arg( 'paged', $current_url ) ), 490 is_rtl() ? '»' :'«'490 '«' 491 491 ); 492 492 … … 495 495 esc_attr__( 'Go to the previous page' ), 496 496 esc_url( add_query_arg( 'paged', max( 1, $current-1 ), $current_url ) ), 497 is_rtl() ? '›' :'‹'497 '‹' 498 498 ); 499 499 … … 511 511 esc_attr__( 'Go to the next page' ), 512 512 esc_url( add_query_arg( 'paged', min( $total_pages, $current+1 ), $current_url ) ), 513 is_rtl() ? '‹' :'›'513 '›' 514 514 ); 515 515 … … 518 518 esc_attr__( 'Go to the last page' ), 519 519 esc_url( add_query_arg( 'paged', $total_pages, $current_url ) ), 520 is_rtl() ? '«' :'»'520 '»' 521 521 ); 522 523 if ( is_rtl() )524 $page_links = array_reverse( $page_links );525 522 526 523 $output .= "\n" . join( "\n", $page_links );
Note: See TracChangeset
for help on using the changeset viewer.