diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2012-07-06 15:58:38 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2012-07-06 15:58:38 +0200 |
commit | e91b4bc2ac79f8855c57accfce2558ead52d2943 (patch) | |
tree | 34d05ca1db5da46aa114e01364f729a03aff2054 /lib | |
parent | 75d01b065da91acb7512b3df82d69c8d931c50b3 (diff) | |
download | nextcloud-server-e91b4bc2ac79f8855c57accfce2558ead52d2943.tar.gz nextcloud-server-e91b4bc2ac79f8855c57accfce2558ead52d2943.zip |
allow user to upload his own root certificate for secure webdav mount
Diffstat (limited to 'lib')
-rw-r--r-- | lib/connector/sabre/client.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/connector/sabre/client.php b/lib/connector/sabre/client.php index bcf564c06d1..b799b541a05 100644 --- a/lib/connector/sabre/client.php +++ b/lib/connector/sabre/client.php @@ -68,7 +68,7 @@ class OC_Connector_Sabre_Client extends Sabre_DAV_Client { * @return array
*/
public function request($method, $url = '', $body = null, $headers = array()) {
-
+
$this->curlSettings[CURLOPT_POSTFIELDS] = $body;
$url = $this->getAbsoluteUrl($url);
|