diff options
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); |