Make WordPress Core


Ignore:
Timestamp:
01/26/2011 09:56:17 AM (15 years ago)
Author:
westi
Message:

Don't redirect continually on empty search results pages. Fixes #16357 props garyc40

File:
1 edited

Legend:

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

    r17361 r17366  
    163163$total_pages = $wp_list_table->get_pagination_arg( 'total_pages' );
    164164
    165 if ( $pagenum > $total_pages ) {
     165if ( $pagenum > $total_pages && $total_pages > 0 ) {
    166166    wp_redirect( add_query_arg( 'paged', $total_pages ) );
    167167    exit;
Note: See TracChangeset for help on using the changeset viewer.