From: Rob Hoelz Date: Wed, 29 May 2013 18:55:22 +0000 (+0200) Subject: Don't verify SSL peers in geturl X-Git-Tag: 1.8~49^2 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=40a35a628dffe559df0da8abae2ae09808011d53;p=tt-rss.git Don't verify SSL peers in geturl --- diff --git a/include/functions.php b/include/functions.php index 2b7f9ac5..8dc109f9 100644 --- a/include/functions.php +++ b/include/functions.php @@ -4101,6 +4101,7 @@ curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); //curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); //CURLOPT_FOLLOWLOCATION Disabled... curl_setopt($curl, CURLOPT_TIMEOUT, 60); + curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); $html = curl_exec($curl);