mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-25 09:23:28 +01:00
quiten warning if $this->user is not set eg. in import
This commit is contained in:
parent
e5fe7ff0de
commit
3a2520209a
@ -742,7 +742,7 @@ class infolog_bo
|
||||
{
|
||||
$responsible = $values['info_responsible'];
|
||||
}
|
||||
if (!($status_only = in_array($this->user, (array)$responsible))) // responsible has implicit right to change status
|
||||
if (!($status_only = $this->user && in_array($this->user, (array)$responsible))) // responsible has implicit right to change status
|
||||
{
|
||||
$status_only = !!array_intersect((array)$responsible,array_keys($GLOBALS['egw']->accounts->memberships($this->user)));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user