diff options
Diffstat (limited to 'views/rss')
-rw-r--r-- | views/rss/layout/objects/list.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/views/rss/layout/objects/list.php b/views/rss/layout/objects/list.php index 9892d2779..2650fc006 100644 --- a/views/rss/layout/objects/list.php +++ b/views/rss/layout/objects/list.php @@ -6,10 +6,9 @@ */ $items = $vars['items']; -$full_view = elgg_extract('full_view', $vars, false); if (is_array($items) && sizeof($items) > 0) { foreach ($items as $item) { - echo elgg_view_list_item($item, $full_view, $vars); + echo elgg_view_list_item($item, $vars); } }
\ No newline at end of file |