diff options
author | Bjoern Schiessle <schiessle@owncloud.com> | 2012-07-02 17:52:51 +0200 |
---|---|---|
committer | Bjoern Schiessle <schiessle@owncloud.com> | 2012-07-02 17:52:51 +0200 |
commit | ab036d47645867374cb6f4f2d168f407e96ceda5 (patch) | |
tree | 1c073a4e843a9217aa2d23c7f35e54e5a974e763 /3rdparty/Sabre/DAV | |
parent | 515adceaceea8de6e3264f17b2fe24419da10959 (diff) | |
download | nextcloud-server-ab036d47645867374cb6f4f2d168f407e96ceda5.tar.gz nextcloud-server-ab036d47645867374cb6f4f2d168f407e96ceda5.zip |
webdav client crashes for secure connections if he doesn't have the right root certificate for ssl verification. For the moment I print at least a useful error message to the OC log and the Apache log
Diffstat (limited to '3rdparty/Sabre/DAV')
-rw-r--r-- | 3rdparty/Sabre/DAV/Client.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/3rdparty/Sabre/DAV/Client.php b/3rdparty/Sabre/DAV/Client.php index a8320dd9782..23bd7c05394 100644 --- a/3rdparty/Sabre/DAV/Client.php +++ b/3rdparty/Sabre/DAV/Client.php @@ -249,6 +249,7 @@ class Sabre_DAV_Client { // Automatically follow redirects CURLOPT_FOLLOWLOCATION => true, CURLOPT_MAXREDIRS => 5, + //CURLOPT_SSL_VERIFYPEER => false, ); switch ($method) { |