This commit is contained in:
Sándor 2021-05-28 09:19:15 +02:00
parent 472c014f53
commit b460a872f3
1 changed files with 2 additions and 2 deletions

View File

@ -41,8 +41,8 @@ if (!function_exists('json_decode'))
logger(1, 'json_decode is required but not available', 1, true); logger(1, 'json_decode is required but not available', 1, true);
// Settings // Settings
$config = isset($opts['c']) ? $opts['c'] : __DIR__.'/config.json'); $config = isset($opts['c']) ? $opts['c'] : __DIR__.'/config.json';
if (!file_exists($config) if (!file_exists($config))
logger(1, 'Config file not found: '.$config, 1, true); logger(1, 'Config file not found: '.$config, 1, true);
if (!$_set = @json_decode(@file_get_contents(__DIR__.'/config.json'))) if (!$_set = @json_decode(@file_get_contents(__DIR__.'/config.json')))
logger(1, 'Unable to load or parse configuration file', 1, true); logger(1, 'Unable to load or parse configuration file', 1, true);