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

11 lines
273 B
PHP
Raw Normal View History

2008-11-11 20:54:12 +00:00
<? defined("SYSPATH") or die("No direct script access."); ?>
<li id="gComment-<?= $comment->id; ?>">
2008-11-15 16:52:23 +00:00
<p>
<a href="#" class="gAuthor"><?= $comment->author ?></a>
<?= date("Y-M-d H:i:s", $comment->created) ?>
2008-11-15 16:52:23 +00:00
</p>
<div>
<?= $comment->text ?>
2008-11-15 16:52:23 +00:00
</div>
</li>