diff options
author | Mario <mario@mariovavti.com> | 2021-10-06 14:32:49 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-10-06 14:32:49 +0000 |
commit | f5f357060bf0ebcb0b8352519375953d993437e7 (patch) | |
tree | 71295c0103b21ffbad2b5cb5eb0c9950ca92e0f3 /view/tpl/alt_pager.tpl | |
parent | 98eea41865b3488d5adf0cfa68d0d32973ca1cb5 (diff) | |
download | volse-hubzilla-f5f357060bf0ebcb0b8352519375953d993437e7.tar.gz volse-hubzilla-f5f357060bf0ebcb0b8352519375953d993437e7.tar.bz2 volse-hubzilla-f5f357060bf0ebcb0b8352519375953d993437e7.zip |
fix alt_pager()
Diffstat (limited to 'view/tpl/alt_pager.tpl')
-rw-r--r-- | view/tpl/alt_pager.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/alt_pager.tpl b/view/tpl/alt_pager.tpl index b46dc7662..94fa93401 100644 --- a/view/tpl/alt_pager.tpl +++ b/view/tpl/alt_pager.tpl @@ -1,4 +1,4 @@ <div class="pager"> -{{if $has_less}}<a href="{{$url}}&page={{$prevpage}}" class="pager-prev">{{$less}}</a>{{/if}} -{{if $has_more}}{{if $has_less}} | {{/if}}<a href="{{$url}}&page={{$nextpage}}" class="pager-next">{{$more}}</a>{{/if}} +{{if $has_less}}<a href="{{$url}}?page={{$prevpage}}" class="pager-prev">{{$less}}</a>{{/if}} +{{if $has_more}}{{if $has_less}} | {{/if}}<a href="{{$url}}?page={{$nextpage}}" class="pager-next">{{$more}}</a>{{/if}} </div> |