diff options
-rw-r--r-- | templates/web/default/pagination.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/web/default/pagination.html b/templates/web/default/pagination.html index d26f07ce3..f5a1192d1 100644 --- a/templates/web/default/pagination.html +++ b/templates/web/default/pagination.html @@ -1,7 +1,7 @@ [% IF pager.last_page > 1 %] <p> [% IF pager.previous_page %] - <a href="[% c.req.uri_with({ param => pager.previous_page }) %]">← Previous</a> + <a href="[% c.req.uri_with({ $param => pager.previous_page }) %]">← Previous</a> [% ELSE %] ← Previous [% END %] @@ -9,7 +9,7 @@ [% pager.first %] to [% pager.last %] of [% pager.total_entries %] | [% IF pager.next_page %] - <a href="[% c.req.uri_with({ param => pager.next_page }) %]">Next →</a> + <a href="[% c.req.uri_with({ $param => pager.next_page }) %]">Next →</a> [% ELSE %] Next → [% END %] |