Merge branch 'MDL-76370-publicpaths-proxying' of https://github.com/jaydn/moodle

This commit is contained in:
Paul Holden 2023-02-06 11:02:41 +00:00
commit 21bd0c3430

View File

@ -3215,7 +3215,14 @@ class curl {
$this->proxy_type = CURLPROXY_SOCKS5;
} else {
$this->proxy_type = CURLPROXY_HTTP;
$this->setopt(array('httpproxytunnel'=>false));
$this->setopt([
'httpproxytunnel' => false,
]);
if (defined('CURLOPT_SUPPRESS_CONNECT_HEADERS')) {
$this->setopt([
'suppress_connect_headers' => true,
]);
}
}
$this->setopt(array('proxytype'=>$this->proxy_type));
}