diff options
author | CiaranG <ciaran@ciarang.com> | 2009-04-21 23:36:15 +0100 |
---|---|---|
committer | CiaranG <ciaran@ciarang.com> | 2009-04-21 23:36:15 +0100 |
commit | ec5e06a542d6b06ea9b1d3de7cb309dd1088b4d4 (patch) | |
tree | 4773a97ddb0bb8141da0f0e8959bca4f1570eef5 /lib/common.php | |
parent | 4cb0a929806869b09d4325c1464fc2ecb7b5a76e (diff) |
Suppress errors when checking for the existence of files that might be restricted by open_basedir - should resolve issue #1310
Diffstat (limited to 'lib/common.php')
-rw-r--r-- | lib/common.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common.php b/lib/common.php index b3882d207..f983c4d16 100644 --- a/lib/common.php +++ b/lib/common.php @@ -192,7 +192,7 @@ $_config_files[] = INSTALLDIR.'/config.php'; $_have_a_config = false; foreach ($_config_files as $_config_file) { - if (file_exists($_config_file)) { + if (@file_exists($_config_file)) { include_once($_config_file); $_have_a_config = true; } |