Make WordPress Core


Ignore:
Timestamp:
05/12/2011 06:09:42 AM (14 years ago)
Author:
markjaquith
Message:

Centralize pagination bound exceeding redirects for list tables. props garyc40. props johnjamesjacoby. fixes #16208

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit.php

    r17872 r17900  
    142142
    143143$wp_list_table->prepare_items();
    144 
    145 $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' );
    146 if ( $pagenum > $total_pages && $total_pages > 0 ) {
    147     wp_redirect( add_query_arg( 'paged', $total_pages ) );
    148     exit;
    149 }
    150144
    151145wp_enqueue_script('inline-edit-post');
Note: See TracChangeset for help on using the changeset viewer.