From 7dd75ce9cdb524ff27ada917608c2cc1dc31f499 Mon Sep 17 00:00:00 2001 From: cash Date: Sat, 12 Mar 2011 15:01:25 +0000 Subject: Refs #3085 moved full_view out of elgg_view_list_item() into $vars to be consistent with other elgg_view* functions git-svn-id: http://code.elgg.org/elgg/trunk@8659 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/rss/layout/objects/list.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'views/rss/layout/objects') 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 -- cgit v1.2.3