aboutsummaryrefslogtreecommitdiff
path: root/views/json/entities/entity_list.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/json/entities/entity_list.php')
-rw-r--r--views/json/entities/entity_list.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/views/json/entities/entity_list.php b/views/json/entities/entity_list.php
index f3d388f21..b583588c3 100644
--- a/views/json/entities/entity_list.php
+++ b/views/json/entities/entity_list.php
@@ -1,10 +1,10 @@
<?php
$entities = $vars['entities'];
-$fullview = $vars['fullview'];
+$full_view = $vars['full_view'];
if (is_array($entities) && sizeof($entities) > 0) {
foreach($entities as $entity) {
- echo elgg_view_entity($entity, $fullview);
+ echo elgg_view_entity($entity, $full_view);
}
}