diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-03 15:03:57 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-03 15:03:57 +0000 |
commit | 484363527905dd13267204c71a6d141956ed6ebc (patch) | |
tree | 88ba8272dcacc194daec18a12f03c6fc9b075ac9 /mod/groups/all.php | |
parent | c3a55fad8f1093e00f3f3689681d1aaf283b46cd (diff) | |
download | elgg-484363527905dd13267204c71a6d141956ed6ebc.tar.gz elgg-484363527905dd13267204c71a6d141956ed6ebc.tar.bz2 |
some work on groups to make them work with the new layout
git-svn-id: https://code.elgg.org/elgg/trunk@1670 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/all.php')
-rw-r--r-- | mod/groups/all.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mod/groups/all.php b/mod/groups/all.php index 7a07cb69e..ede0f841f 100644 --- a/mod/groups/all.php +++ b/mod/groups/all.php @@ -28,9 +28,9 @@ set_context($context); $title = sprintf(elgg_echo("groups:all"),page_owner_entity()->name); - $body = elgg_view_title($title); - $body .= $objects; - $body = elgg_view_layout('one_column',$body); + $area2 = elgg_view_title($title); + $area2 .= $objects; + $body = elgg_view_layout('two_column_left_sidebar',$area1, $area2); // Finally draw the page page_draw($title, $body); |