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