config->save_value() was overwriting the cached array values with a single value

This commit is contained in:
Nathan Gray 2008-02-22 16:42:20 +00:00
parent 594fa7df4b
commit cc210e9dae

View File

@ -130,7 +130,7 @@ class config
if (isset(self::$configs[$app]))
{
self::$configs[$app] = $value;
self::$configs[$app][$name] = $value;
}
if(is_array($value))
{
@ -281,4 +281,4 @@ class config
config::$db->set_app('phpgwapi');
}
}
config::init_static();
config::init_static();