From ba8dee05209e136a8911862b21ff6ad90d67f149 Mon Sep 17 00:00:00 2001 From: Bjoern Schiessle Date: Fri, 6 Jul 2012 12:26:54 +0200 Subject: introduce subclassed client.php and revert changes to 3rdparty --- 3rdparty/Sabre/DAV/Client.php | 7 ------- 1 file changed, 7 deletions(-) (limited to '3rdparty') 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; -- cgit v1.2.3