Suppress warning in setup if config doesn't exist

This commit is contained in:
kondou 2013-07-03 16:00:23 +02:00
parent 33e1ced53c
commit aa7d8edd14
1 changed files with 1 additions and 1 deletions

View 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);
}