Use correct variable. see [27373].

props TobiasBg.
fixes #14424.


git-svn-id: https://develop.svn.wordpress.org/trunk@27675 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2014-03-24 03:24:33 +00:00
parent 0be6f6072a
commit 48391a7444

View File

@ -2338,7 +2338,7 @@ $page_links = paginate_links( array(
'prev_text' => __('«'), 'prev_text' => __('«'),
'next_text' => __('»'), 'next_text' => __('»'),
'total' => ceil($wp_query->found_posts / 10), 'total' => ceil($wp_query->found_posts / 10),
'current' => $_GET['paged'] 'current' => $q['paged'],
)); ));
if ( $page_links ) if ( $page_links )