Add support for legacy $lang config in App->loadConfig
This commit is contained in:
parent
007ec92ae4
commit
d993c8584c
1 changed files with 5 additions and 0 deletions
|
@ -357,6 +357,11 @@ class App
|
||||||
$this->setConfigValue('system', 'pidfile', $pidfile);
|
$this->setConfigValue('system', 'pidfile', $pidfile);
|
||||||
unset($pidfile);
|
unset($pidfile);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (isset($lang)) {
|
||||||
|
$this->setConfigValue('system', 'language', $lang);
|
||||||
|
unset($lang);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (file_exists($this->basepath . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'local.ini.php')) {
|
if (file_exists($this->basepath . DIRECTORY_SEPARATOR . 'config' . DIRECTORY_SEPARATOR . 'local.ini.php')) {
|
||||||
|
|
Loading…
Reference in a new issue