Merge pull request #9406 from philfry/master

silently discard the response body, needed for apache/mod_dav and maybe ...
remotes/origin/fix-10825
Vincent Petry 11 years ago
commit 3df7a83c72
  1. 1
      lib/private/files/storage/dav.php

@ -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);

Loading…
Cancel
Save