mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-03-24 23:34:30 +00:00
Fix inline uploader page links. Props mdawaffe. fixes #4217 for 2.3
git-svn-id: https://develop.svn.wordpress.org/trunk@5368 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -104,8 +104,8 @@ foreach ( $wp_upload_tabs as $t => $tab_array ) { // We've already done the curr
|
||||
$per = 10;
|
||||
}
|
||||
$page_links = paginate_links( array(
|
||||
'base' => 'upload.php?%_%',
|
||||
'format' => 'paged=%#%',
|
||||
'base' => add_query_arg( 'paged', '%#%' ),
|
||||
'format' => '',
|
||||
'total' => ceil($total / $per),
|
||||
'current' => $paged ? $paged : 1,
|
||||
'prev_text' => '«',
|
||||
|
||||
Reference in New Issue
Block a user