blob: 6829d74b7ae8c7ed24ad8553ee5399c365be6f5d (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php 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>
|