Index: branches/5.3.x/core/kernel/utility/system_config.php =================================================================== diff -u -N -r16252 -r16327 --- branches/5.3.x/core/kernel/utility/system_config.php (.../system_config.php) (revision 16252) +++ branches/5.3.x/core/kernel/utility/system_config.php (.../system_config.php) (revision 16327) @@ -1,6 +1,6 @@ data ) { - $this->data = array_merge($this->getDefaults(), $this->parse()); + $this->data = array_replace_recursive($this->getDefaults(), $this->parse()); } return $this->data; @@ -280,4 +280,4 @@ class kSystemConfigException extends Exception { -} \ No newline at end of file +}