diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-01-09 12:06:25 -0800 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-01-09 12:06:25 -0800 |
commit | ca027f37496bc54b3c03bdc88ea36b47c0e88d9b (patch) | |
tree | 5f03b76bf29bbfe241e08dcb598444bdc738e700 /apps | |
parent | 533f0e8e258caef66019377a160e7213fd530f07 (diff) | |
parent | 43415386a8a60be2e72a0d0a648ac6bcd5b3353f (diff) | |
download | nextcloud-server-ca027f37496bc54b3c03bdc88ea36b47c0e88d9b.tar.gz nextcloud-server-ca027f37496bc54b3c03bdc88ea36b47c0e88d9b.zip |
Merge pull request #1124 from schiesbn/sabredav2
OC_Connector_Sabre_Client no longer needed
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_external/lib/webdav.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/webdav.php b/apps/files_external/lib/webdav.php index 68aca228bc5..6c5bc579c30 100644 --- a/apps/files_external/lib/webdav.php +++ b/apps/files_external/lib/webdav.php @@ -50,7 +50,7 @@ class OC_FileStorage_DAV extends OC_Filestorage_Common{ 'password' => $this->password, ); - $this->client = new OC_Connector_Sabre_Client($settings); + $this->client = new Sabre_DAV_Client($settings); $caview = \OCP\Files::getStorage('files_external'); if ($caview) { |