2009-01-01 00:23:29 +00:00
|
|
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
2008-12-20 01:25:03 +00:00
|
|
|
<ul>
|
2008-12-21 02:02:41 +00:00
|
|
|
<? foreach ($comments as $comment): ?>
|
2008-12-20 01:25:03 +00:00
|
|
|
<li>
|
2008-12-21 02:02:41 +00:00
|
|
|
<?= date("Y-M-d H:i:s", $comment->created) ?>
|
2009-01-08 17:13:06 +00:00
|
|
|
<?= t("{{author_name}} said {{comment_text}}",
|
|
|
|
|
array("author_name" => "<a href=\"#\">$comment->author</a>",
|
|
|
|
|
"comment_text" => "<i>\"" . text::limit_words($comment->text, 50) . "\"</i>")); ?>
|
2008-12-20 01:25:03 +00:00
|
|
|
</li>
|
2008-12-21 02:02:41 +00:00
|
|
|
<? endforeach ?>
|
2008-12-20 01:25:03 +00:00
|
|
|
</ul>
|