aboutsummaryrefslogtreecommitdiff
path: root/views/json/search
diff options
context:
space:
mode:
Diffstat (limited to 'views/json/search')
-rw-r--r--views/json/search/entity_list.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/views/json/search/entity_list.php b/views/json/search/entity_list.php
deleted file mode 100644
index a47bb37fc..000000000
--- a/views/json/search/entity_list.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<?php
-/**
- * Elgg default layout
- *
- * @package Elgg
- * @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
- */
-
-$entities = $vars['entities'];
-if (is_array($entities) && sizeof($entities) > 0) {
- foreach($entities as $entity) {
- echo elgg_view_entity($entity);
- }
-}