summaryrefslogtreecommitdiff
path: root/modules/comment/views/comment.html.php
blob: 19886d2830662a3098070b12189cbdad1f3465cb (plain)
1
2
3
4
5
6
7
8
9
10
<? 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>