From 2c23064e291fe525e1d9e1e3ecd1963dbcc4af60 Mon Sep 17 00:00:00 2001 From: marcus Date: Wed, 7 Jan 2009 16:26:50 +0000 Subject: Closes #286: Group access restrictions issue fixed, modified from patch supplied with #315 git-svn-id: https://code.elgg.org/elgg/trunk@2538 36083f99-b078-4883-b0ff-0f9b5a30f544 --- mod/groups/groupprofile.php | 40 +++++++++++++++++++++++++--------------- 1 file changed, 25 insertions(+), 15 deletions(-) (limited to 'mod/groups/groupprofile.php') diff --git a/mod/groups/groupprofile.php b/mod/groups/groupprofile.php index 7bdcf8718..f8b0b6bba 100644 --- a/mod/groups/groupprofile.php +++ b/mod/groups/groupprofile.php @@ -14,20 +14,30 @@ $group = get_entity($group_guid); - - set_page_owner($group_guid); - - $area2 = elgg_view_title($group->name); - $area2 .= elgg_view('group/group', array('entity' => $group, 'user' => $_SESSION['user'], 'full' => true)); - - //group profile 'items' - these are not real widgets, just contents to display - $area2 .= elgg_view('groups/profileitems',array('entity' => $group)); - - //group members - $area3 = elgg_view('groups/members',array('entity' => $group)); - - $body = elgg_view_layout('two_column_left_sidebar', $area1, $area2, $area3); - + if ($group) { + set_page_owner($group_guid); + + $title = $group->name; + + $area2 = elgg_view_title($title); + $area2 .= elgg_view('group/group', array('entity' => $group, 'user' => $_SESSION['user'], 'full' => true)); + + //group profile 'items' - these are not real widgets, just contents to display + $area2 .= elgg_view('groups/profileitems',array('entity' => $group)); + + //group members + $area3 = elgg_view('groups/members',array('entity' => $group)); + + $body = elgg_view_layout('two_column_left_sidebar', $area1, $area2, $area3); + } else { + $title = elgg_echo('groups:notfound'); + + $area2 = elgg_view_title($title); + $area2 .= elgg_echo('groups:notfound:details'); + + $body = elgg_view_layout('two_column_left_sidebar', "", $area2,""); + } + // Finally draw the page - page_draw($group->name, $body); + page_draw($title, $body); ?> \ No newline at end of file -- cgit v1.2.3