mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-24 20:01:36 +02:00
Fix config::save_value static call issue
This commit is contained in:
parent
b576d88a5f
commit
10b93660ef
@ -126,9 +126,8 @@ class config
|
|||||||
throw new egw_exception_assertion_failed('$app parameter required for static call of config::save_value($name,$value,$app)!');
|
throw new egw_exception_assertion_failed('$app parameter required for static call of config::save_value($name,$value,$app)!');
|
||||||
}
|
}
|
||||||
//echo "<p>config::save_value('$name','".print_r($value,True)."','$app')</p>\n";
|
//echo "<p>config::save_value('$name','".print_r($value,True)."','$app')</p>\n";
|
||||||
if (!$app || isset($this) && $app == $this->appname)
|
if (!$app || isset($this) && is_a($this,'config') && $app == $this->appname)
|
||||||
{
|
{
|
||||||
$app = $this->appname;
|
|
||||||
$this->config_data[$name] = $value;
|
$this->config_data[$name] = $value;
|
||||||
}
|
}
|
||||||
//echo "<p>config::save_value('$name','".print_r($value,True)."','$app')</p>\n";
|
//echo "<p>config::save_value('$name','".print_r($value,True)."','$app')</p>\n";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user