mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:44 +01:00
fixed wrong timing in serialization of array, when storing arrays as config values, probably also fixing last issue of community bug #3059
This commit is contained in:
parent
0580322fd7
commit
0a5e2426d1
@ -140,10 +140,6 @@ class config
|
||||
return True; // no change ==> exit
|
||||
}
|
||||
|
||||
if(is_array($value))
|
||||
{
|
||||
$value = serialize($value);
|
||||
}
|
||||
if (!isset($value) || $value === '')
|
||||
{
|
||||
if (isset(self::$configs[$app])) unset(self::$configs[$app][$name]);
|
||||
@ -152,6 +148,7 @@ class config
|
||||
else
|
||||
{
|
||||
self::$configs[$app][$name] = $value;
|
||||
if(is_array($value)) $value = serialize($value);
|
||||
$ok = self::$db->insert(config::TABLE,array('config_value'=>$value),array('config_app'=>$app,'config_name'=>$name),__LINE__,__FILE__);
|
||||
}
|
||||
if ($update_cache) egw_cache::setInstance(__CLASS__, 'configs', self::$configs);
|
||||
|
Loading…
Reference in New Issue
Block a user