mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-24 17:04:14 +01:00
fix for bug [ 1026126 ] Changing group ACL broken
This commit is contained in:
parent
c1f1985564
commit
5ef227c4d1
@ -71,7 +71,7 @@
|
||||
}
|
||||
|
||||
$owner_name = $GLOBALS['phpgw']->accounts->id2name($owner); // get owner name for title
|
||||
if($no_privat_grant = $GLOBALS['phpgw']->accounts->get_type($owner) == 'g')
|
||||
if($no_privat_grants = $GLOBALS['phpgw']->accounts->get_type($owner) == 'g')
|
||||
{
|
||||
$owner_name = lang('Group').' ('.$owner_name.')';
|
||||
}
|
||||
@ -194,7 +194,7 @@
|
||||
));
|
||||
$totalentries = $GLOBALS['phpgw']->accounts->total;
|
||||
|
||||
$memberships = $GLOBALS['phpgw']->acl->get_location_list_for_id('phpgw_group', 1, $owner);
|
||||
$memberships = (array) $GLOBALS['phpgw']->acl->get_location_list_for_id('phpgw_group', 1, $owner);
|
||||
|
||||
$header_type = '';
|
||||
$processed = Array();
|
||||
|
Loading…
Reference in New Issue
Block a user