silently discard the response body, needed for apache/mod_dav and maybe other dav servers which return an html body

remotes/origin/fix-10825
Philippe Kueck 11 years ago
parent b8ced7025e
commit ef114b6594
  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