aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/views/default/profile/commentwall/commentwall.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/profile/views/default/profile/commentwall/commentwall.php')
-rw-r--r--mod/profile/views/default/profile/commentwall/commentwall.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/mod/profile/views/default/profile/commentwall/commentwall.php b/mod/profile/views/default/profile/commentwall/commentwall.php
deleted file mode 100644
index 56670dcf0..000000000
--- a/mod/profile/views/default/profile/commentwall/commentwall.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-/**
- * Elgg Commentwall display page
- */
-//start the div which will wrap all the message board contents
-echo "<div id='comment_wall_display'>";
-
-// If there is any content to view, view it
-if (is_array($vars['annotation']) && sizeof($vars['annotation']) > 0) {
- //loop through all annotations and display
- foreach($vars['annotation'] as $content) {
- echo elgg_view("profile/commentwall/commentwall_content", array('annotation' => $content));
- }
-} else {
- echo "<p class='margin-top'>" . elgg_echo("profile:commentwall:none") . "</p>";
-}
-//close the wrapper div
-echo "</div>"; \ No newline at end of file