diff options
author | Robin Appelman <icewind1991@gmail.com> | 2010-09-06 20:07:27 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2010-09-06 20:07:27 +0200 |
commit | ec7c069653f572bdf5dd463a79cdaa37abb53534 (patch) | |
tree | 57a671e3b21781b477c333416d5066a806c1220e | |
parent | 5162809c8afd722a00de90390f94e173cac8431a (diff) | |
download | nextcloud-server-ec7c069653f572bdf5dd463a79cdaa37abb53534.tar.gz nextcloud-server-ec7c069653f572bdf5dd463a79cdaa37abb53534.zip |
provide a defealt, empty, filesystem configuration to suppress some errors
-rw-r--r-- | inc/lib_base.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/inc/lib_base.php b/inc/lib_base.php index 0f355eb3487..6cf820207b6 100644 --- a/inc/lib_base.php +++ b/inc/lib_base.php @@ -57,6 +57,7 @@ $CONFIG_ENABLEBACKUP=false; $CONFIG_DATEFORMAT='j M Y G:i'; $CONFIG_DBNAME='owncloud'; $CONFIG_DBTYPE='sqlite'; +$CONFIG_FILESYSTEM=array(); // include the generated configfile @include_once($SERVERROOT.'/config/config.php'); |