diff options
author | kondou <kondou@ts.unde.re> | 2013-07-03 16:00:23 +0200 |
---|---|---|
committer | kondou <kondou@ts.unde.re> | 2013-07-03 16:00:23 +0200 |
commit | aa7d8edd14603cc06253fc018573382f60873911 (patch) | |
tree | fba234af2266e2ad247313910c86c4af3340ff5c /lib/config.php | |
parent | 33e1ced53c31443ad9918d6bdd7d20afc628ccbd (diff) | |
download | nextcloud-server-aa7d8edd14603cc06253fc018573382f60873911.tar.gz nextcloud-server-aa7d8edd14603cc06253fc018573382f60873911.zip |
Suppress warning in setup if config doesn't exist
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 3cbb89fb981..fcd0a9d7c3c 100644 --- a/lib/config.php +++ b/lib/config.php @@ -144,7 +144,7 @@ class OC_Config{ //Include file and merge config foreach($config_files as $file){ - include $file; + @include $file; if( isset( $CONFIG ) && is_array( $CONFIG )) { self::$cache = array_merge(self::$cache, $CONFIG); } |