diff options
author | Mario <mario@mariovavti.com> | 2022-01-28 20:03:30 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-01-28 20:03:30 +0000 |
commit | 755076a8e55b734c8921418a829517ef5e07b52e (patch) | |
tree | ef341ce525f8ad887a85f31bac71a7782b8857da /view/tpl | |
parent | c2e21e837f3d3449a44e976bc6192863ba7e75d7 (diff) | |
parent | b49f7b8b3441300c8dcd4f3f6fe51af7b31b8010 (diff) | |
download | volse-hubzilla-755076a8e55b734c8921418a829517ef5e07b52e.tar.gz volse-hubzilla-755076a8e55b734c8921418a829517ef5e07b52e.tar.bz2 volse-hubzilla-755076a8e55b734c8921418a829517ef5e07b52e.zip |
Merge branch 'dev'
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/alt_pager.tpl | 4 | ||||
-rw-r--r-- | view/tpl/conv_item.tpl | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/view/tpl/alt_pager.tpl b/view/tpl/alt_pager.tpl index 94fa93401..23d57327c 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}}{{$url_appendix}}page={{$prevpage}}" class="pager-prev">{{$less}}</a>{{/if}} +{{if $has_more}}{{if $has_less}} | {{/if}}<a href="{{$url}}{{$url_appendix}}page={{$nextpage}}" class="pager-next">{{$more}}</a>{{/if}} </div> diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index 415f24ece..47261d070 100644 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -114,7 +114,7 @@ </button> {{/if}} {{if $item.reply_to}} - <button type="button" title="{{$item.reply_to.0}}" class="btn btn-outline-secondary btn-sm" onclick="doreply({{$item.parent}}, {{$item.id}}, '{{$item.author_id}}', '{{$item.reply_to.2}} {{$item.name}}'); return false;"> + <button type="button" title="{{$item.reply_to.0}}" class="btn btn-outline-secondary btn-sm" onclick="doreply({{$item.parent}}, {{$item.id}}, '{{$item.author_id}}', '{{$item.reply_to.2}} {{$item.name|escape:javascript}}');"> <i class="fa fa-reply" ></i> </button> {{/if}} |