diff options
author | Mario <mario@mariovavti.com> | 2021-02-15 10:15:57 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-02-15 10:15:57 +0000 |
commit | d72a096fa55e1b0c9d78a0fc0fa5a0b72988c69d (patch) | |
tree | e16495d2f64d2c5d5e01394178d810a060895643 /view/tpl/threaded_conversation.tpl | |
parent | ed993920015cfae7f0e939b1733ab125c85e1dda (diff) | |
download | volse-hubzilla-d72a096fa55e1b0c9d78a0fc0fa5a0b72988c69d.tar.gz volse-hubzilla-d72a096fa55e1b0c9d78a0fc0fa5a0b72988c69d.tar.bz2 volse-hubzilla-d72a096fa55e1b0c9d78a0fc0fa5a0b72988c69d.zip |
fix preview generating duplicate IDs
Diffstat (limited to 'view/tpl/threaded_conversation.tpl')
-rw-r--r-- | view/tpl/threaded_conversation.tpl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/view/tpl/threaded_conversation.tpl b/view/tpl/threaded_conversation.tpl index 5bc7d8386..6e773088e 100644 --- a/view/tpl/threaded_conversation.tpl +++ b/view/tpl/threaded_conversation.tpl @@ -1,9 +1,13 @@ +{{if !$preview }} <div id="threads-begin"></div> +{{/if}} {{if $photo_item}} {{$photo_item}} {{/if}} {{foreach $threads as $thread_item}} {{include file="{{$thread_item.template}}" item=$thread_item}} {{/foreach}} +{{if !$preview }} <div id="threads-end"></div> <div id="conversation-end"></div> +{{/if}} |