mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 14:41:29 +01:00
* InfoLog: switching to a group-type resets access to "public" and disables access in edit
This commit is contained in:
parent
d6ce940eb0
commit
04017a728b
@ -851,6 +851,7 @@ class infolog_bo
|
||||
return false; // no edit rights from the group-owner and no implicit rights (delegated and sufficient rights)
|
||||
}
|
||||
}
|
||||
$values['info_access'] = 'public'; // group-owners are allways public
|
||||
}
|
||||
elseif (!$values['info_id'] && !$values['info_owner'] || $GLOBALS['egw']->accounts->get_type($values['info_owner']) == 'g')
|
||||
{
|
||||
|
@ -1323,7 +1323,9 @@ else
|
||||
$entry['info_type'] = $settings;
|
||||
try {
|
||||
$this->bo->write($entry, true,true,true,$skip_notifications,true); // Throw exceptions
|
||||
} catch (egw_exception_wrong_userinput $e) {
|
||||
}
|
||||
catch (egw_exception_wrong_userinput $e)
|
||||
{
|
||||
$msg .= "\n".$e->getMessage();
|
||||
$failed++;
|
||||
break;
|
||||
@ -1946,6 +1948,8 @@ else
|
||||
//echo "<p>setting type to r/o as user has no delete rights from group #$group</p>\n";
|
||||
$readonlys['info_type'] = true;
|
||||
}
|
||||
// disable info_access for group-owners
|
||||
$readonlys['info_access'] = true;
|
||||
}
|
||||
elseif($GLOBALS['egw']->accounts->get_type($content['info_owner']) == 'g')
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user