1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 21:15:55 +00:00

add openssl version hack to fetch_file_contents()

This commit is contained in:
Andrew Dolgov
2013-07-20 23:30:40 +04:00
parent 60a1e7e795
commit d86945c7ef

View File

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