summaryrefslogtreecommitdiff
path: root/modules/comment/views
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2008-12-21 01:29:25 +0000
committerBharat Mediratta <bharat@menalto.com>2008-12-21 01:29:25 +0000
commit81e87dfecdcd645dad6583373540ea182a50cea2 (patch)
tree677b796f7f4ef02354687a18f24b7082703f849b /modules/comment/views
parent8f87a030c8abe447feac22022fa6223248979601 (diff)
Change "datetime" to "created" to give some semantics to this field.
Diffstat (limited to 'modules/comment/views')
-rw-r--r--modules/comment/views/comment.html.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/comment/views/comment.html.php b/modules/comment/views/comment.html.php
index 2b306404..4cd1663c 100644
--- a/modules/comment/views/comment.html.php
+++ b/modules/comment/views/comment.html.php
@@ -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>