fix: #33454 The localConf variable cannot be false by default; in which case the site test will fail
This commit is contained in:
parent
6f31664c05
commit
42921d0456
1 changed files with 1 additions and 1 deletions
|
|
@ -153,7 +153,7 @@ class Settings implements \Iterator, \Countable
|
||||||
|
|
||||||
// load local config without merging - we need it here for the mode
|
// load local config without merging - we need it here for the mode
|
||||||
$conf = $this->buildFileName();
|
$conf = $this->buildFileName();
|
||||||
$localConf = false;
|
$localConf = [];
|
||||||
if (file_exists($conf)) $localConf = require($conf);
|
if (file_exists($conf)) $localConf = require($conf);
|
||||||
|
|
||||||
// if a mode was set in the constructor do not overwrite it
|
// if a mode was set in the constructor do not overwrite it
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue