Issue 9135: Display only reshared posts at the top

This commit is contained in:
Michael 2020-09-08 22:06:10 +00:00
parent fb7f7435c0
commit 42dcd6646e
4 changed files with 10 additions and 3 deletions

View file

@ -1985,6 +1985,7 @@ ul.dropdown-menu li:hover {
}
/* Media Classes */
.wall-item-ammounce,
.media .time,
.media .shared-time,
.media .delivery,

View file

@ -81,7 +81,7 @@ as the value of $top_child_total (this is done at the end of this file)
<span class="uriid" style="display: none;">{{$item.uriid}}</span>
{{/if}}
<div class="media {{$item.shiny}}">
{{if $item.responses.announce && $mode != 'display'}}
{{if $item.reshared}}
<div class="wall-item-ammounce wall-item-responses" id="wall-item-ammounce-{{$item.id}}">{{$item.responses.announce.output nofilter}}</div>
{{/if}}
{{* The avatar picture and the photo-menu *}}
@ -530,9 +530,7 @@ as the value of $top_child_total (this is done at the end of this file)
{{if $item.responses}}
<div class="wall-item-responses">
{{foreach $item.responses as $verb=>$response}}
{{if $verb != 'announce' || $mode == 'display'}}
<div class="wall-item-{{$verb}}" id="wall-item-{{$verb}}-{{$item.id}}">{{$response.output nofilter}}</div>
{{/if}}
{{/foreach}}
</div>
{{/if}}