Skip to content
Snippets Groups Projects
Commit 3df7a83c authored by Vincent Petry's avatar Vincent Petry
Browse files

Merge pull request #9406 from philfry/master

silently discard the response body, needed for apache/mod_dav and maybe ...
parents ddd8eae9 ef114b65
Branches
No related tags found
No related merge requests found
......@@ -281,6 +281,7 @@ class DAV extends \OC\Files\Storage\Common {
curl_setopt($curl, CURLOPT_INFILE, $source); // file pointer
curl_setopt($curl, CURLOPT_INFILESIZE, filesize($path));
curl_setopt($curl, CURLOPT_PUT, true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
if ($this->secure === true) {
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment