diff options
author | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-06 13:25:03 +0000 |
---|---|---|
committer | dave <dave@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-06 13:25:03 +0000 |
commit | 39e04806a7f3cfc9483e733d0280d1c40a6090d5 (patch) | |
tree | ca349f72c0a1c5df031d145d8ab50655cdcd419b | |
parent | 3490a1bf20d98a861d7bffa738f8fbb3c5b0c482 (diff) | |
download | elgg-39e04806a7f3cfc9483e733d0280d1c40a6090d5.tar.gz elgg-39e04806a7f3cfc9483e733d0280d1c40a6090d5.tar.bz2 |
group profile tweak
git-svn-id: https://code.elgg.org/elgg/trunk@1735 36083f99-b078-4883-b0ff-0f9b5a30f544
-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);
|