Fix: lang not initialized in saveconfig script

This commit is contained in:
Bartek Fabiszewski 2020-11-11 18:27:48 +01:00
parent 71bcea9ed4
commit 7113021950

View File

@ -20,8 +20,12 @@
require_once(dirname(__DIR__) . "/helpers/auth.php");
require_once(ROOT_DIR . "/helpers/config.php");
require_once(ROOT_DIR . "/helpers/lang.php");
$config = uConfig::getInstance();
$lang = (new uLang($config))->getStrings();
$auth = new uAuth();
if (!$auth->isAdmin()) {
uUtils::exitWithError($lang["notauthorized"]);
}
@ -51,7 +55,6 @@ $data = [
'upload_maxsize' => uUtils::postInt('uploadMaxSize')
];
$config = uConfig::getInstance();
$config->setFromArray($data);
if (!is_null($olLayers)) {
$config->olLayers = [];
@ -64,6 +67,6 @@ if (!is_null($olLayers)) {
}
if ($config->save() === false) {
uUtils::exitWithError("Server error");
uUtils::exitWithError($lang["servererror"]);
}
uUtils::exitWithSuccess();