fixed not working save_value() method, if read_repository was not called

This commit is contained in:
Ralf Becker 2006-08-17 14:32:25 +00:00
parent ad2c99f11e
commit 374749cdde

View File

@ -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
}