Files
gallery3/modules/comment/views/admin_block_recent_comments.html.php
2008-12-21 02:02:41 +00:00

11 lines
344 B
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>