Files
gallery3/modules/comment/views/admin_block_recent_comments.html.php

11 lines
344 B
PHP
Raw Normal View History

2008-12-20 07:30:27 +00:00
<? 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>