diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/comment/views/comments.html.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/modules/comment/views/comments.html.php b/modules/comment/views/comments.html.php index 9a608a43..1b9f8bbb 100644 --- a/modules/comment/views/comments.html.php +++ b/modules/comment/views/comments.html.php @@ -10,12 +10,16 @@ <div id="g-comment-detail"> <? if (!$comments->count()): ?> <p class="g-no-comments"> + <? if (comment::can_comment()): ?> <?= t("No comments yet. Be the first to <a %attrs>comment</a>!", array("attrs" => html::mark_clean("href=\"" . url::site("form/add/comments/{$item->id}") . "\" class=\"showCommentForm\""))) ?> + <? else: ?> + <?= t("No comments yet.") ?> + <? endif ?> </p> <ul><li class="g-no-comments"> </li></ul> - <? endif ?> - <? if ($comments->count()): ?> + <? else: ?> + <ul> <? foreach ($comments as $comment): ?> <li id="g-comment-<?= $comment->id ?>"> |