aboutsummaryrefslogtreecommitdiff
path: root/views/default/entities/entity_listing.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/default/entities/entity_listing.php')
-rw-r--r--views/default/entities/entity_listing.php48
1 files changed, 20 insertions, 28 deletions
diff --git a/views/default/entities/entity_listing.php b/views/default/entities/entity_listing.php
index dd07e7d01..f6157e11a 100644
--- a/views/default/entities/entity_listing.php
+++ b/views/default/entities/entity_listing.php
@@ -1,37 +1,29 @@
<?php
+/**
+ * Elgg entity listing
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @author Curverider Ltd
+ * @link http://elgg.org/
+ */
+?>
- /**
- * Elgg search listing
- *
- * @package Elgg
- * @subpackage Core
-
- * @author Curverider Ltd
+<div class="entity_listing">
- * @link http://elgg.org/
- */
+ <div class="entity_listing_icon">
+ <?php
-?>
+ echo $vars['icon'];
- <div class="entity_listing">
-
- <div class="entity_listing_icon">
- <?php
+ ?>
+ </div>
+ <div class="entity_listing_info">
+ <?php
- echo $vars['icon'];
-
- ?>
- </div>
- <div class="entity_listing_info">
- <?php
+ echo $vars['info'];
- echo $vars['info'];
-
- ?>
- </div>
-
+ ?>
</div>
-
-<?php
-?> \ No newline at end of file
+</div>