fix: [settings] invalid bootstrap loading of config.json
- it was dependent on the app_local.php file existingdependabot/npm_and_yarn/webroot/theme/braces-3.0.3
parent
8603b7da04
commit
6907ed2842
|
@ -89,18 +89,19 @@ try {
|
||||||
if (file_exists(CONFIG . 'app_local.php')) {
|
if (file_exists(CONFIG . 'app_local.php')) {
|
||||||
Configure::load('app_local', 'default');
|
Configure::load('app_local', 'default');
|
||||||
//Configure::load('cerebrate', 'default', true);
|
//Configure::load('cerebrate', 'default', true);
|
||||||
$settingsFile = new File(CONFIG . 'config.json');
|
}
|
||||||
if ($settingsFile->exists()) {
|
|
||||||
|
$settingsFile = new File(CONFIG . 'config.json');
|
||||||
|
if ($settingsFile->exists()) {
|
||||||
$settings = file_get_contents(CONFIG . 'config.json');
|
$settings = file_get_contents(CONFIG . 'config.json');
|
||||||
$settings = json_decode($settings, true);
|
$settings = json_decode($settings, true);
|
||||||
foreach ($settings as $path => $setting) {
|
foreach ($settings as $path => $setting) {
|
||||||
if($path == 'debug') {
|
if ($path == 'debug') {
|
||||||
Configure::write($path, (bool) $setting);
|
Configure::write($path, (bool) $setting);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
Configure::write($path, $setting);
|
Configure::write($path, $setting);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Reference in New Issue