diff options
Diffstat (limited to 'mod')
-rw-r--r-- | mod/groups/groupprofile.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/groups/groupprofile.php b/mod/groups/groupprofile.php index 36bede0c0..064ff3cd1 100644 --- a/mod/groups/groupprofile.php +++ b/mod/groups/groupprofile.php @@ -23,7 +23,10 @@ //group profile 'items' - these are not real widgets, just contents to display
$area2 .= elgg_view('groups/profileitems',array('entity' => $group));
- $body = elgg_view_layout('two_column_left_sidebar', $area1, $area2);
+ //group members
+ $area3 = elgg_view('groups/members',array('entity' => $group));
+
+ $body = elgg_view_layout('two_column_left_sidebar', $area1, $area2, $area3);
// Finally draw the page
page_draw($group->name, $body);
|