aboutsummaryrefslogtreecommitdiffstats
path: root/lib/config.php
diff options
context:
space:
mode:
authorkondou <kondou@ts.unde.re>2013-07-03 16:00:23 +0200
committerkondou <kondou@ts.unde.re>2013-07-03 16:00:23 +0200
commitaa7d8edd14603cc06253fc018573382f60873911 (patch)
treefba234af2266e2ad247313910c86c4af3340ff5c /lib/config.php
parent33e1ced53c31443ad9918d6bdd7d20afc628ccbd (diff)
downloadnextcloud-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.php2
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);
}