Page MenuHomeIn-Portal Phabricator

D147.id362.diff
No OneTemporary

File Metadata

Created
Wed, Feb 26, 9:03 AM

D147.id362.diff

Index: core/kernel/utility/system_config.php
===================================================================
--- core/kernel/utility/system_config.php
+++ core/kernel/utility/system_config.php
@@ -149,7 +149,7 @@
public function getData()
{
if ( !$this->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
+}

Event Timeline