From 229a871be7eec8e96c9fa0efab50e40ccc6c4ef0 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Thu, 16 Oct 2014 09:01:23 +0400 Subject: [PATCH] do not force sslversion in any cases --- include/functions.php | 4 ---- include/functions2.php | 4 ---- 2 files changed, 8 deletions(-) diff --git a/include/functions.php b/include/functions.php index d783bd85..1dbf004d 100644 --- a/include/functions.php +++ b/include/functions.php @@ -403,10 +403,6 @@ curl_setopt($ch, CURLOPT_POSTFIELDS, $post_query); } - if ((OPENSSL_VERSION_NUMBER >= 0x0090808f) && (OPENSSL_VERSION_NUMBER < 0x10000000)) { - curl_setopt($ch, CURLOPT_SSLVERSION, 3); - } - if ($login && $pass) curl_setopt($ch, CURLOPT_USERPWD, "$login:$pass"); diff --git a/include/functions2.php b/include/functions2.php index 69f447e8..672373e6 100644 --- a/include/functions2.php +++ b/include/functions2.php @@ -2243,10 +2243,6 @@ curl_setopt($curl, CURLOPT_PROXY, _CURL_HTTP_PROXY); } - if ((OPENSSL_VERSION_NUMBER >= 0x0090808f) && (OPENSSL_VERSION_NUMBER < 0x10000000)) { - curl_setopt($curl, CURLOPT_SSLVERSION, 3); - } - $html = curl_exec($curl); $status = curl_getinfo($curl); -- 2.39.2