diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-01-08 17:44:28 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-01-08 17:44:28 +0100 |
commit | 43415386a8a60be2e72a0d0a648ac6bcd5b3353f (patch) | |
tree | c1da1d264987d02e6b0469228aab848ce781e5c4 /apps/files_external | |
parent | b69328e1d1f0888c2541e3f0be27e534f980adb4 (diff) | |
download | nextcloud-server-43415386a8a60be2e72a0d0a648ac6bcd5b3353f.tar.gz nextcloud-server-43415386a8a60be2e72a0d0a648ac6bcd5b3353f.zip |
Upstream merged my patch to add additional ssl root certificates to the webdav client.
This means that OC_Connector_Sabre_Client is no longer needed
Diffstat (limited to 'apps/files_external')
-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) { |