diff options
-rw-r--r-- | apps/dav/lib/Capabilities.php | 2 | ||||
-rw-r--r-- | config/config.sample.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/dav/lib/Capabilities.php b/apps/dav/lib/Capabilities.php index c951c261115..63e62b6a5a0 100644 --- a/apps/dav/lib/Capabilities.php +++ b/apps/dav/lib/Capabilities.php @@ -27,7 +27,7 @@ class Capabilities implements ICapability { 'chunking' => '1.0', ] ]; - if ($this->config->getSystemValueBool('bulkupload.enabled', true)) { + if ($this->config->getSystemValueBool('bulkupload.enabled', false)) { $capabilities['dav']['bulkupload'] = '1.0'; } if ($this->coordinator->isEnabled()) { diff --git a/config/config.sample.php b/config/config.sample.php index aaf3dba2809..54294dfb8b7 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -2519,9 +2519,9 @@ $CONFIG = [ /** * Enable the bulk upload feature. * - * Defaults to ``true`` + * Defaults to ``false`` */ -'bulkupload.enabled' => true, +'bulkupload.enabled' => false, /** * Enables fetching open graph metadata from remote urls |