diff options
Diffstat (limited to 'modules/comment/views/comment_list.html.php')
-rw-r--r-- | modules/comment/views/comment_list.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/comment/views/comment_list.html.php b/modules/comment/views/comment_list.html.php index ffd64c0c..1545a106 100644 --- a/modules/comment/views/comment_list.html.php +++ b/modules/comment/views/comment_list.html.php @@ -4,7 +4,7 @@ <li id="gComment-<?= $index; ?>" class="gComment <?= $index % 2 ? 'odd' : 'even' ?>"> <p> <a href="#" class="gAuthor"><?= $comment->author ?></a> - said <?= round((time() - $comment->datetime)/60) ?> minutes ago + <?= comment::format_elapsed_time($comment->datetime) ?>, <span class="understate"><?= strftime('%c', $comment->datetime) ?></span> </p> <div> |