aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty
diff options
context:
space:
mode:
authorBjoern Schiessle <schiessle@owncloud.com>2012-07-06 12:26:54 +0200
committerBjoern Schiessle <schiessle@owncloud.com>2012-07-06 12:26:54 +0200
commitba8dee05209e136a8911862b21ff6ad90d67f149 (patch)
treed8ee08c25e989ca366dc2d85463428b960019e99 /3rdparty
parent8353517969d4256a86c1085cb3c3804f08a14001 (diff)
downloadnextcloud-server-ba8dee05209e136a8911862b21ff6ad90d67f149.tar.gz
nextcloud-server-ba8dee05209e136a8911862b21ff6ad90d67f149.zip
introduce subclassed client.php and revert changes to 3rdparty
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/Sabre/DAV/Client.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/3rdparty/Sabre/DAV/Client.php b/3rdparty/Sabre/DAV/Client.php
index d257c86da10..075e84caa1d 100644
--- a/3rdparty/Sabre/DAV/Client.php
+++ b/3rdparty/Sabre/DAV/Client.php
@@ -22,7 +22,6 @@ class Sabre_DAV_Client {
protected $userName;
protected $password;
protected $proxy;
- protected $capath;
/**
* Constructor
@@ -50,10 +49,6 @@ class Sabre_DAV_Client {
'proxy'
);
- $this->capath = '';
- if (isset($settings['capath'])) {
- $this->capath = $settings['capath'];
- }
foreach($validSettings as $validSetting) {
if (isset($settings[$validSetting])) {
@@ -259,8 +254,6 @@ class Sabre_DAV_Client {
//CURLOPT_SSL_VERIFYPEER => false,
);
- if ($this->capath != '') $curlSettings[CURLOPT_CAPATH] = $this->capath;
-
switch ($method) {
case 'PUT':
$curlSettings[CURLOPT_PUT] = true;