diff options
Diffstat (limited to 'views/default/group/search')
-rw-r--r-- | views/default/group/search/finishblurb.php | 24 | ||||
-rw-r--r-- | views/default/group/search/startblurb.php | 14 |
2 files changed, 23 insertions, 15 deletions
diff --git a/views/default/group/search/finishblurb.php b/views/default/group/search/finishblurb.php index caee030b7..4164c6713 100644 --- a/views/default/group/search/finishblurb.php +++ b/views/default/group/search/finishblurb.php @@ -1,15 +1,17 @@ <?php
-
- if ($vars['count'] > $vars['threshold']) {
+/**
+ * @package Elgg
+ * @subpackage Core
+ * @author Curverider Ltd
+ * @link http://elgg.org/
+ */
+if ($vars['count'] > $vars['threshold']) {
?>
-<div class="contentWrapper"><a href="<?php echo $vars['url']; ?>pg/search/groups/?tag=<?php echo urlencode($vars['tag']); ?>"><?php
-
- echo elgg_echo("group:search:finishblurb");
-
- ?></a></div>
+<div class="contentWrapper"><a href="<?php echo $vars['url']; ?>pg/search/groups/?tag=<?php echo urlencode($vars['tag']); ?>">
+ <?php
+ echo elgg_echo("group:search:finishblurb");
+ ?></a>
+</div>
<?php
-
- }
-
-?>
\ No newline at end of file +}
diff --git a/views/default/group/search/startblurb.php b/views/default/group/search/startblurb.php index c7f3a4e55..3abfe4dc5 100644 --- a/views/default/group/search/startblurb.php +++ b/views/default/group/search/startblurb.php @@ -1,8 +1,14 @@ +<?php
+/**
+ * @package Elgg
+ * @subpackage Core
+ * @author Curverider Ltd
+ * @link http://elgg.org/
+ */
+?>
<div class="contentWrapper">
- <?php
-
- echo sprintf(elgg_echo("group:search:startblurb"),$vars['tag']);
-
+ <?php
+ echo sprintf(elgg_echo("group:search:startblurb"),$vars['tag']);
?>
</div>
\ No newline at end of file |