diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-04-27 16:55:07 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-04-27 16:55:07 -0400 |
commit | ce5b98ca016841edf920ebc062f1b4d53488762c (patch) | |
tree | 2aff0cd2f420a251f24dac7f477a4476b52d3798 /lib/common.php | |
parent | 3081b2e31708520e6ed83041ce3ba04329d3ec90 (diff) | |
parent | 8cf8298dc02b1373fed53eb95982a33b969b42ee (diff) |
Merge branch '0.7.x' into querybyid
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; } |