Also show comment author in dashboard.

This commit is contained in:
Matthias Mees 2014-01-25 21:00:06 +01:00
parent 756c47980d
commit 03a25aab88

View File

@ -18,7 +18,7 @@
{if is_array($comments)}
{foreach $comments as $comment}
<li><div class="comment_summary">
<b><a href="{$comment.entrylink}" title="Comment to {$comment.title}">#{$comment.id}</a></b> - {$comment.body|truncate:100:"&hellip;"}
<b>{$comment.author|escape|truncate:30:"&hellip;"} {$CONST.IN} <a href="{$comment.entrylink}" title="Comment to {$comment.title}">#{$comment.id}</a></b> - {$comment.body|truncate:100:"&hellip;"}
</div>
<div id="c{$comment.id}_full" class="comment_full additional_info">{$comment.fullBody}</div>