mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
Check that $var is set and not False - some installs will error on the array element not being set
This commit is contained in:
parent
e07e330732
commit
3a298a8c7d
@ -394,7 +394,7 @@
|
||||
}
|
||||
else
|
||||
{
|
||||
if (isset($this->$set_from[$app_name][$var]) && $this->$set_from[$app_name][$var] !== '')
|
||||
if ($var && isset($this->$set_from[$app_name][$var]) && $this->$set_from[$app_name][$var] !== '')
|
||||
{
|
||||
$this->data[$app_name][$var] = $this->$set_from[$app_name][$var];
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user