]> source.dussan.org Git - nextcloud-server.git/commitdiff
Suppress warning in setup if config doesn't exist
authorkondou <kondou@ts.unde.re>
Wed, 3 Jul 2013 14:00:23 +0000 (16:00 +0200)
committerkondou <kondou@ts.unde.re>
Wed, 3 Jul 2013 14:00:23 +0000 (16:00 +0200)
lib/config.php

index 3cbb89fb98138c0de2398a2eaf924ed1d5189ff5..fcd0a9d7c3c2f37ef488dd72475fad22cb9af59f 100644 (file)
@@ -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);
                        }