diff options
Diffstat (limited to 'lib/config.php')
-rw-r--r-- | lib/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/config.php b/lib/config.php index 19d58c90443..7ccbc050508 100644 --- a/lib/config.php +++ b/lib/config.php @@ -129,7 +129,7 @@ class Config { } // Include file and merge config foreach ($configFiles as $file) { - if (!is_file($file)) { + if (!file_exists($file)) { continue; } unset($CONFIG); |