diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-07-08 17:39:34 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-07-08 17:39:34 +0200 |
commit | 10978a80c21f859f8caf5e872b0c7449395b60b3 (patch) | |
tree | cdc5920c08e05381a87d8636fdd695ec37b2f9b7 /apps | |
parent | 65d9d6ad01e96dc88491b5983e8d5f9a032f3131 (diff) | |
parent | ea269f0067dda7cee0621443a9620607297b0387 (diff) | |
download | nextcloud-server-10978a80c21f859f8caf5e872b0c7449395b60b3.tar.gz nextcloud-server-10978a80c21f859f8caf5e872b0c7449395b60b3.zip |
Merge pull request #9507 from owncloud/fix-9302-master
Upload abortion is now detected within the OC_Connector_Sabre_File::put...
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/appinfo/remote.php | 1 | ||||
-rw-r--r-- | apps/files_sharing/publicwebdav.php | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php index dd5c470431a..3ba25085bad 100644 --- a/apps/files/appinfo/remote.php +++ b/apps/files/appinfo/remote.php @@ -53,7 +53,6 @@ $server->subscribeEvent('beforeMethod', function () use ($server, $objectTree) { $rootDir = new OC_Connector_Sabre_Directory($view, $rootInfo); $objectTree->init($rootDir, $view, $mountManager); - $server->addPlugin(new OC_Connector_Sabre_AbortedUploadDetectionPlugin($view)); $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin($view)); }, 30); // priority 30: after auth (10) and acl(20), before lock(50) and handling the request diff --git a/apps/files_sharing/publicwebdav.php b/apps/files_sharing/publicwebdav.php index 684edd97670..03e43967a40 100644 --- a/apps/files_sharing/publicwebdav.php +++ b/apps/files_sharing/publicwebdav.php @@ -67,7 +67,6 @@ $server->subscribeEvent('beforeMethod', function () use ($server, $objectTree, $ $mountManager = \OC\Files\Filesystem::getMountManager(); $objectTree->init($root, $view, $mountManager); - $server->addPlugin(new OC_Connector_Sabre_AbortedUploadDetectionPlugin($view)); $server->addPlugin(new OC_Connector_Sabre_QuotaPlugin($view)); }, 30); // priority 30: after auth (10) and acl(20), before lock(50) and handling the request |