aboutsummaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/rss/river/item.php (renamed from views/rss/core/river/body.php)0
-rw-r--r--views/rss/river/item/list.php17
2 files changed, 0 insertions, 17 deletions
diff --git a/views/rss/core/river/body.php b/views/rss/river/item.php
index f84e6ccf0..f84e6ccf0 100644
--- a/views/rss/core/river/body.php
+++ b/views/rss/river/item.php
diff --git a/views/rss/river/item/list.php b/views/rss/river/item/list.php
deleted file mode 100644
index 3b2fc6179..000000000
--- a/views/rss/river/item/list.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-/**
- * @package Elgg
- * @subpackage Core
- */
-
-if (isset($vars['items']) && is_array($vars['items']) && !empty($vars['items'])) {
- $i = 1;
- foreach($vars['items'] as $item) {
- if ($i++ >= $vars['limit']) {
- break;
- }
-
- $entity = get_entity($item->object_guid);
- echo elgg_view_entity($entity);
- }
-}