1
0
Mirror von https://github.com/nextcloud/server.git synchronisiert 2024-07-29 08:15:55 +02:00

ignore config read failures

Dieser Commit ist enthalten in:
Bart Visscher 2013-07-23 17:38:37 +02:00
Ursprung 5caa7576d4
Commit 485e8ab0a5

Datei anzeigen

@ -144,7 +144,8 @@ class Config {
continue;
}
unset($CONFIG);
include $file;
// ignore errors on include, this can happen when doing a fresh install
@include $file;
if (isset($CONFIG) && is_array($CONFIG)) {
$this->cache = array_merge($this->cache, $CONFIG);
}