blob: 25cd2caaf65bca98b9b2ac2d2969d9bd7b6d8258 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<li id="gComment-<?= $comment->id; ?>">
<p>
<a href="#" class="gAuthor"><?= $comment->author ?></a>
<?= date("Y-M-d H:i:s", $comment->created) ?>
</p>
<div>
<?= $comment->text ?>
</div>
</li>
|