diff options
author | Mario <mario@mariovavti.com> | 2019-11-29 19:46:13 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-11-29 19:46:13 +0000 |
commit | c1aa96ebf70fd5b6426d96bf7d7e771dfc4ca9ab (patch) | |
tree | 3dd72390a6b7598ed3f6d034b9c2a2f3a8b9a588 /view/tpl | |
parent | 17e012afc62904b625a01f61415a9e370392dd25 (diff) | |
download | volse-hubzilla-c1aa96ebf70fd5b6426d96bf7d7e771dfc4ca9ab.tar.gz volse-hubzilla-c1aa96ebf70fd5b6426d96bf7d7e771dfc4ca9ab.tar.bz2 volse-hubzilla-c1aa96ebf70fd5b6426d96bf7d7e771dfc4ca9ab.zip |
sse: template fixes, fix missing forum notifications and minor impovements
Diffstat (limited to 'view/tpl')
-rwxr-xr-x | view/tpl/conv_list.tpl | 2 | ||||
-rwxr-xr-x | view/tpl/search_item.tpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/conv_list.tpl b/view/tpl/conv_list.tpl index b244311bb..11c5ce792 100755 --- a/view/tpl/conv_list.tpl +++ b/view/tpl/conv_list.tpl @@ -4,7 +4,7 @@ </div> <div id="collapsed-comments-{{$item.id}}" class="collapsed-comments" style="display: none;"> {{/if}} - <div id="thread-wrapper-{{$item.id}}" class="thread-wrapper{{if $item.toplevel}} {{$item.toplevel}} generic-content-wrapper h-entry {{else}} u-comment h-cite {{/if}}" data-b64mid="{{$item.mid}}"> + <div id="thread-wrapper-{{$item.id}}" class="thread-wrapper{{if $item.toplevel}} {{$item.toplevel}} generic-content-wrapper h-entry {{else}} u-comment h-cite {{/if}}" data-b64mids='{{$item.mids}}'> <a name="item_{{$item.id}}" ></a> <div class="wall-item-outside-wrapper{{if $item.is_comment}} comment{{/if}}{{if $item.previewing}} preview{{/if}}" id="wall-item-outside-wrapper-{{$item.id}}" > <div class="clearfix wall-item-content-wrapper{{if $item.is_comment}} comment{{/if}}" id="wall-item-content-wrapper-{{$item.id}}"> diff --git a/view/tpl/search_item.tpl b/view/tpl/search_item.tpl index 3197fb893..198b71e9c 100755 --- a/view/tpl/search_item.tpl +++ b/view/tpl/search_item.tpl @@ -1,4 +1,4 @@ -<div id="thread-wrapper-{{$item.id}}" class="thread-wrapper{{if $item.toplevel}} {{$item.toplevel}} clearfix generic-content-wrapper{{/if}}"> +<div id="thread-wrapper-{{$item.id}}" class="thread-wrapper{{if $item.toplevel}} {{$item.toplevel}} clearfix generic-content-wrapper{{/if}}" data-b64mids='{{$item.mids}}'> <a name="{{$item.id}}" ></a> <div class="clearfix wall-item-outside-wrapper {{$item.indent}}{{$item.previewing}}{{if $item.owner_url}} wallwall{{/if}}" id="wall-item-outside-wrapper-{{$item.id}}" > <div class="wall-item-content-wrapper {{$item.indent}}" id="wall-item-content-wrapper-{{$item.id}}"> |