aboutsummaryrefslogtreecommitdiff
path: root/views/json/search/entity_list.php
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2011-10-29 13:01:05 -0400
committercash <cash.costello@gmail.com>2011-10-29 13:01:05 -0400
commite01240611f2a94d0a194235f2f83323049ad1a74 (patch)
tree311afd784f4c3e4f99dbfe5a06123d3fefb2842a /views/json/search/entity_list.php
parent96fa5ba183d4ea5fb01d4f5a44c808dcb3291b72 (diff)
downloadelgg-e01240611f2a94d0a194235f2f83323049ad1a74.tar.gz
elgg-e01240611f2a94d0a194235f2f83323049ad1a74.tar.bz2
Refs #3201 updates json river views and removed old search view
Diffstat (limited to 'views/json/search/entity_list.php')
-rw-r--r--views/json/search/entity_list.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/views/json/search/entity_list.php b/views/json/search/entity_list.php
deleted file mode 100644
index c778bf5df..000000000
--- a/views/json/search/entity_list.php
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php
-/**
- * Elgg default layout
- *
- * @package Elgg
- * @subpackage Core
- */
-
-$entities = $vars['entities'];
-if (is_array($entities) && sizeof($entities) > 0) {
- foreach($entities as $entity) {
- echo elgg_view_entity($entity);
- }
-}