aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/all.php
diff options
context:
space:
mode:
authormarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-21 16:58:07 +0000
committermarcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-07-21 16:58:07 +0000
commit212f7c09ea4f1060516b4c573f6a0b28de46ddfb (patch)
tree28176fab76b6b60925ecfbe61b5b08e5b348fe0f /mod/groups/all.php
parentd8a0b9c1fa81f107bf8fbe18540f12e99a87deed (diff)
downloadelgg-212f7c09ea4f1060516b4c573f6a0b28de46ddfb.tar.gz
elgg-212f7c09ea4f1060516b4c573f6a0b28de46ddfb.tar.bz2
Groups using elgg_view_title
git-svn-id: https://code.elgg.org/elgg/trunk@1483 36083f99-b078-4883-b0ff-0f9b5a30f544
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);