add storing of config values with names like "app/name"

This commit is contained in:
Ralf Becker 2014-11-06 13:46:03 +00:00
parent 4f2219908f
commit a70600d964

View File

@ -289,10 +289,19 @@ class setup_process
foreach($current_config as $name => $value)
{
$app = 'phpgwapi';
if ($name == 'postpone_statistics_submit')
{
$app = 'admin';
}
elseif(strpos($name, '/') !== false)
{
list($app, $name) = explode('/', $name);
}
$GLOBALS['egw_setup']->db->insert($GLOBALS['egw_setup']->config_table,array(
'config_value' => $value,
),array(
'config_app' => $name == 'postpone_statistics_submit' ? 'admin' : 'phpgwapi',
'config_app' => $app,
'config_name' => $name,
),__FILE__,__LINE__);
}