From aa7d8edd14603cc06253fc018573382f60873911 Mon Sep 17 00:00:00 2001 From: kondou Date: Wed, 3 Jul 2013 16:00:23 +0200 Subject: [PATCH] Suppress warning in setup if config doesn't exist --- lib/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.5