diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-11 02:01:47 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-11 02:01:47 +0000 |
commit | 10e52c96095121f1e0accaeb74eea0e4121d082a (patch) | |
tree | 9d5580b77004d80d67b258a0a4bcea3657ffd1f1 /mod | |
parent | 2ee7635d1ccbb39a5bd866c084230125efe14913 (diff) | |
download | elgg-10e52c96095121f1e0accaeb74eea0e4121d082a.tar.gz elgg-10e52c96095121f1e0accaeb74eea0e4121d082a.tar.bz2 |
Refs #2640 fixes a layout issue due to change in elgg_view_layout()
git-svn-id: http://code.elgg.org/elgg/trunk@7292 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod')
-rw-r--r-- | mod/groups/all.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mod/groups/all.php b/mod/groups/all.php index cf1a483b1..6e472459d 100644 --- a/mod/groups/all.php +++ b/mod/groups/all.php @@ -60,8 +60,11 @@ } $area1 .= elgg_view("groups/group_sort_menu", array("count" => $group_count, "filter" => $filter)) . $objects; - $content = $area1 . $area2; - $body = elgg_view_layout('one_column_with_sidebar', array('content' => $content)); + $params = array( + 'content' => $area1, + 'sidebar' => $area2 + ); + $body = elgg_view_layout('one_column_with_sidebar', $params); // Finally draw the page echo elgg_view_page($title, $body);
\ No newline at end of file |