Skip to content
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.

Commit

Permalink
Merge pull request #233 from navidkashani/master
Browse files Browse the repository at this point in the history
Fix to URL Problem : #38; replaces & and breaks the navigation
  • Loading branch information
olefredrik committed Feb 25, 2015
2 parents 7664ee3 + b901c43 commit 14a8491
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/foundation.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function FoundationPress_pagination() {
// For more options and info view the docs for paginate_links()
// http://codex.wordpress.org/Function_Reference/paginate_links
$paginate_links = paginate_links( array(
'base' => str_replace( $big, '%#%', get_pagenum_link($big) ),
'base' => str_replace( $big, '%#%', html_entity_decode(get_pagenum_link($big)) ),
'current' => max( 1, get_query_var('paged') ),
'total' => $wp_query->max_num_pages,
'mid_size' => 5,
Expand Down

0 comments on commit 14a8491

Please sign in to comment.