Change "datetime" to "created" to give some semantics to this field.

This commit is contained in:
Bharat Mediratta
2008-12-21 01:29:25 +00:00
parent 8f87a030c8
commit 81e87dfecd
5 changed files with 15 additions and 31 deletions

View File

@@ -2,10 +2,10 @@
<li id="gComment-<?= $comment->id; ?>">
<p>
<a href="#" class="gAuthor"><?= $comment->author ?></a>
<?= comment::format_elapsed_time($comment->datetime) ?>,
<span class="gUnderstate"><?= strftime('%c', $comment->datetime) ?></span>
<?= comment::format_elapsed_time($comment->created) ?>,
<span class="gUnderstate"><?= strftime('%c', $comment->created) ?></span>
</p>
<div>
<?= $comment->text ?>
<?= $comment->text ?>
</div>
</li>