diff options
Diffstat (limited to 'views/opendd/search/entity_list.php')
| -rw-r--r-- | views/opendd/search/entity_list.php | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/views/opendd/search/entity_list.php b/views/opendd/search/entity_list.php index 8864b62da..6b33cefde 100644 --- a/views/opendd/search/entity_list.php +++ b/views/opendd/search/entity_list.php @@ -1,9 +1,11 @@ -<?php
-
- $entities = $vars['entities'];
- if (is_array($entities) && sizeof($entities) > 0) {
- foreach($entities as $entity)
- echo elgg_view_entity($entity);
- }
-
-?>
\ No newline at end of file +<?php +/** + * @package Elgg + * @subpackage Core + */ +$entities = $vars['entities']; +if (is_array($entities) && sizeof($entities) > 0) { + foreach($entities as $entity) { + echo elgg_view_entity($entity); + } +}
\ No newline at end of file |
