mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-07 13:39:07 -04:00
12 lines
361 B
PHP
12 lines
361 B
PHP
<? defined("SYSPATH") or die("No direct script access."); ?>
|
|
<li id="gComment-<?= $comment->id; ?>">
|
|
<p>
|
|
<a href="#" class="gAuthor"><?= $comment->author ?></a>
|
|
<?= comment::format_elapsed_time($comment->created) ?>,
|
|
<span class="gUnderstate"><?= strftime('%c', $comment->created) ?></span>
|
|
</p>
|
|
<div>
|
|
<?= $comment->text ?>
|
|
</div>
|
|
</li>
|