This commit is contained in:
Michał Gdula 2022-11-01 12:41:23 +00:00
parent b3dbc2cb65
commit 37e1db5b7b

View file

@ -10,13 +10,13 @@
*/ */
$user_settings = json_decode(file_get_contents(__DIR__."/../usr/conf/conf.json"), true); $user_settings = json_decode(file_get_contents(__DIR__."/../usr/conf/conf.json"), true);
if (!is_file(__DIR__."/../usr/conf/conf.json")) { if (is_file(__DIR__."/../usr/conf/conf.json")) {
$settings = json_decode(file_get_contents(__DIR__."/../usr/conf/conf.json"), true); $settings = json_decode(file_get_contents(__DIR__."/../usr/conf/conf.json"), true);
} else { } else {
$settings = json_decode(file_get_contents(__DIR__."/../usr/conf.default.json"), true); $settings = json_decode(file_get_contents(__DIR__."/../usr/conf.default.json"), true);
} }
if (!is_file(__DIR__."/../usr/conf/msg.json")) { if (is_file(__DIR__."/../usr/conf/msg.json")) {
$user_welcome = json_decode(file_get_contents(__DIR__."/../usr/conf/msg.json"), true); $user_welcome = json_decode(file_get_contents(__DIR__."/../usr/conf/msg.json"), true);
$user_welcome = $user_welcome['welcome']; $user_welcome = $user_welcome['welcome'];
} else { } else {