From: Andrew Dolgov Date: Tue, 16 Jul 2013 14:15:28 +0000 (+0400) Subject: add workaround for openssl 0.9 bug (http://tt-rss.org/forum/viewtopic.php?t=2420... X-Git-Tag: 1.9~10 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=aefed7f75cae38b16b741c50743cfe1e44a71119;p=tt-rss.git add workaround for openssl 0.9 bug (http://tt-rss.org/forum/viewtopic.php?t=2420&p=13734#p13734) --- diff --git a/include/functions.php b/include/functions.php index 3c1956ea..58aad111 100644 --- a/include/functions.php +++ b/include/functions.php @@ -4153,6 +4153,10 @@ curl_setopt($curl, CURLOPT_TIMEOUT, 60); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); + if ((OPENSSL_VERSION_NUMBER >= 0x0090808f) && (OPENSSL_VERSION_NUMBER < 0x10000000)) { + curl_setopt($curl, CURLOPT_SSLVERSION, 3); + } + $html = curl_exec($curl); $status = curl_getinfo($curl);