Make WordPress Core


Ignore:
Timestamp:
04/10/2007 07:38:36 AM (18 years ago)
Author:
matt
Message:

This fixes the broken paginate_links on the comments and users page, however the way this function works is rather awkward and should be redone. There is far too much complexity for what it's trying to do.

File:
1 edited

Legend:

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

    r5118 r5226  
    8888
    8989$page_links = paginate_links( array(
    90     'base' => clean_url( add_query_arg( 'apage', '%#%' ) ),
    91     'format' => '',
     90    'base' => 'edit-comments.php?%_%',
     91    'format' => 'apage=%#%',
    9292    'total' => ceil($total / 20),
    9393    'current' => $page
Note: See TracChangeset for help on using the changeset viewer.