aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/appinfo
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-09-20 23:21:48 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-09-30 13:12:51 +0200
commitecfde5faa192f5944125c01b17f2d1717d67d5cd (patch)
tree2ac2fb25e26ad1782857c5dce50bb6273b755505 /apps/files/appinfo
parent480aeb804fc64be6fdcb1551f89e21304e270b33 (diff)
downloadnextcloud-server-ecfde5faa192f5944125c01b17f2d1717d67d5cd.tar.gz
nextcloud-server-ecfde5faa192f5944125c01b17f2d1717d67d5cd.zip
Contains ownCloud's own implementation of the Sabre_DAV_Server regarding the handling of depth infinity
The clean way would have been to submit proper patches to the upstream project and reincorporate the code once released. This will and has to follow!
Diffstat (limited to 'apps/files/appinfo')
-rw-r--r--apps/files/appinfo/remote.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/appinfo/remote.php b/apps/files/appinfo/remote.php
index 0c1f2e6580c..75c80cd49f3 100644
--- a/apps/files/appinfo/remote.php
+++ b/apps/files/appinfo/remote.php
@@ -39,7 +39,7 @@ $rootDir = new OC_Connector_Sabre_Directory('');
$objectTree = new \OC\Connector\Sabre\ObjectTree($rootDir);
// Fire up server
-$server = new Sabre_DAV_Server($objectTree);
+$server = new OC_Connector_Sabre_Server($objectTree);
$server->httpRequest = $requestBackend;
$server->setBaseUri($baseuri);