summaryrefslogtreecommitdiff
path: root/modules/comment/views/comment_list.html.php
diff options
context:
space:
mode:
Diffstat (limited to 'modules/comment/views/comment_list.html.php')
-rw-r--r--modules/comment/views/comment_list.html.php13
1 files changed, 0 insertions, 13 deletions
diff --git a/modules/comment/views/comment_list.html.php b/modules/comment/views/comment_list.html.php
deleted file mode 100644
index 16371541..00000000
--- a/modules/comment/views/comment_list.html.php
+++ /dev/null
@@ -1,13 +0,0 @@
-<? defined("SYSPATH") or die("No direct script access."); ?>
-<? foreach (array_reverse($comments) as $index => $comment): ?>
-<li id="gComment-<?= $index; ?>" class="gComment <?= text::alternate("gEven", "gOdd") ?>">
- <p>
- <a href="#" class="gAuthor"><?= $comment->author ?></a>
- <?= comment::format_elapsed_time($comment->datetime) ?>,
- <span class="gUnderstate"><?= strftime('%c', $comment->datetime) ?></span>
- </p>
- <div>
- <?= $comment->text ?>
- </div>
-</li>
-<? endforeach; ?>