mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-23 07:09:20 +01:00
fixed not working save_value() method, if read_repository was not called
This commit is contained in:
parent
ad2c99f11e
commit
374749cdde
@ -117,7 +117,7 @@
|
||||
$app = $this->appname;
|
||||
$this->config_data[$name] = $value;
|
||||
}
|
||||
if ($app == $this->appname && $this->read_data[$name] == $value)
|
||||
if ($app == $this->appname && isset($this->read_data[$name]) && $this->read_data[$name] == $value)
|
||||
{
|
||||
return True; // no change ==> exit
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user