diff options
author | 2024-01-26 21:58:24 +0100 | |
---|---|---|
committer | 2024-01-26 21:58:24 +0100 | |
commit | c3a968193ef7948ca0908f3350a58c01e47ae274 (patch) | |
tree | 194c0515df9b4dda07c263359e38dbd09838185f /lib | |
parent | 6938f061257033be082b0250c76fa34452183d8f (diff) | |
download | rss-bridge-c3a968193ef7948ca0908f3350a58c01e47ae274.tar.gz rss-bridge-c3a968193ef7948ca0908f3350a58c01e47ae274.tar.zst rss-bridge-c3a968193ef7948ca0908f3350a58c01e47ae274.zip |
fix: typo in previous commit (#3934)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/bootstrap.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bootstrap.php b/lib/bootstrap.php index f1d82c4c..6465f5f9 100644 --- a/lib/bootstrap.php +++ b/lib/bootstrap.php @@ -43,7 +43,7 @@ spl_autoload_register(function ($className) { }); $customConfig = []; -if (file_exists(__DIR__ . '/config.ini.php')) { - $customConfig = parse_ini_file(__DIR__ . '/config.ini.php', true, INI_SCANNER_TYPED); +if (file_exists(__DIR__ . '/../config.ini.php')) { + $customConfig = parse_ini_file(__DIR__ . '/../config.ini.php', true, INI_SCANNER_TYPED); } Configuration::loadConfiguration($customConfig, getenv()); |