blob: 2d753bd714d1193b225a404e83dfa0f7c154dd09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<ul>
<? foreach ($comments as $comment): ?>
<li>
<?= date("Y-M-d H:i:s", $comment->created) ?>
<?= t("{{author_name}} said {{comment_text}}",
array("author_name" => "<a href=\"#\">$comment->author</a>",
"comment_text" => "<i>\"" . text::limit_words($comment->text, 50) . "\"</i>")); ?>
</li>
<? endforeach ?>
</ul>
|