Don't verify SSL peers in geturl

This commit is contained in:
Rob Hoelz 2013-05-29 20:55:22 +02:00
parent e2b4c0b70c
commit 40a35a628d
1 changed files with 1 additions and 0 deletions

View File

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