This commit is contained in:
Rastislav Brandobur 2017-01-13 12:27:26 +00:00 committed by GitHub
commit c9db956b82
1 changed files with 3 additions and 3 deletions

View File

@ -6,15 +6,15 @@
</div>
<div class="comment-replies-holder">
<% if $Replies %>
<% if $PagedReplies %>
<ul class="comments-list level-{$Depth}">
<% loop $Replies %>
<% loop $PagedReplies %>
<li class="comment $EvenOdd<% if FirstLast %> $FirstLast <% end_if %> $SpamClass">
<% include CommentsInterface_singlecomment %>
</li>
<% end_loop %>
</ul>
<% with $Replies %>
<% with $PagedReplies %>
<% include ReplyPagination %>
<% end_with %>
<% end_if %>