diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-08 02:54:59 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-12-08 02:54:59 +0000 |
commit | 77a4c159205dbc117dc67162d56e480ad9c0404b (patch) | |
tree | f9c61732af7d65c23256601bf79c2bfabdef6c78 /views | |
parent | 15eaacc12ad0ffe19d42b6d2508c4469ba005bfd (diff) | |
download | elgg-77a4c159205dbc117dc67162d56e480ad9c0404b.tar.gz elgg-77a4c159205dbc117dc67162d56e480ad9c0404b.tar.bz2 |
comment views have been moved
git-svn-id: http://code.elgg.org/elgg/trunk@7561 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views')
-rw-r--r-- | views/default/comments/latest.php | 17 |
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 |