fix: #33454 Site config was not set in the correct order
This commit is contained in:
parent
942f8a4bde
commit
6f31664c05
1 changed files with 2 additions and 2 deletions
|
|
@ -169,7 +169,7 @@ class Settings implements \Iterator, \Countable
|
||||||
$siteConf = $this->buildFileName(self::SITE);
|
$siteConf = $this->buildFileName(self::SITE);
|
||||||
if (file_exists($siteConf))
|
if (file_exists($siteConf))
|
||||||
{
|
{
|
||||||
$localConf = array_replace_recursive($this->settings, require($siteConf));
|
$localConf = array_replace_recursive($localConf, require($siteConf));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue