aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/all.php
diff options
context:
space:
mode:
Diffstat (limited to 'mod/groups/all.php')
-rw-r--r--mod/groups/all.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/mod/groups/all.php b/mod/groups/all.php
index 53d617e42..7a07cb69e 100644
--- a/mod/groups/all.php
+++ b/mod/groups/all.php
@@ -27,10 +27,13 @@
set_context($context);
- $body = elgg_view_layout('one_column',$objects);
+ $title = sprintf(elgg_echo("groups:all"),page_owner_entity()->name);
+ $body = elgg_view_title($title);
+ $body .= $objects;
+ $body = elgg_view_layout('one_column',$body);
// Finally draw the page
- page_draw(sprintf(elgg_echo("groups:all"),page_owner_entity()->name), $body);
+ page_draw($title, $body);