add openssl version hack to fetch_file_contents()
This commit is contained in:
parent
60a1e7e795
commit
d86945c7ef
1 changed files with 4 additions and 0 deletions
|
@ -349,6 +349,10 @@
|
|||
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_query);
|
||||
}
|
||||
|
||||
if ((OPENSSL_VERSION_NUMBER >= 0x0090808f) && (OPENSSL_VERSION_NUMBER < 0x10000000)) {
|
||||
curl_setopt($curl, CURLOPT_SSLVERSION, 3);
|
||||
}
|
||||
|
||||
if ($login && $pass)
|
||||
curl_setopt($ch, CURLOPT_USERPWD, "$login:$pass");
|
||||
|
||||
|
|
Loading…
Reference in a new issue