From 374749cdde70047292f856f4719224a5c779567c Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 17 Aug 2006 14:32:25 +0000 Subject: [PATCH] fixed not working save_value() method, if read_repository was not called --- phpgwapi/inc/class.config.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.config.inc.php b/phpgwapi/inc/class.config.inc.php index 32201d585b..c91f7ab39a 100755 --- a/phpgwapi/inc/class.config.inc.php +++ b/phpgwapi/inc/class.config.inc.php @@ -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 }