aboutsummaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/default/comments/latest.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/views/default/comments/latest.php b/views/default/comments/latest.php
deleted file mode 100644
index c38b1f5c4..000000000
--- a/views/default/comments/latest.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-/**
- * Latest comments on an entity
- *
- * @uses $vars['comments'] Array of comment objects
- */
-
-if (isset($vars['comments'])) {
- echo '<ul class="elgg-latest-comments elgg-list">';
- foreach ($vars['comments'] as $comment) {
- $html = elgg_view_annotation($comment, false);
- if ($html) {
- echo "<li>$html</li>";
- }
- }
- echo '</ul>';
-} \ No newline at end of file