mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 03:19:13 -04:00
11 lines
344 B
PHP
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>
|