summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRob Hoelz <[email protected]>2013-05-29 20:55:22 +0200
committerRob Hoelz <[email protected]>2013-05-29 20:55:22 +0200
commit40a35a628dffe559df0da8abae2ae09808011d53 (patch)
treea982c3b96218af51c80b43a3dff24044ec221bae /include
parente2b4c0b70c102cd19f3a0e2099bb9ccdcc1076b1 (diff)
Don't verify SSL peers in geturl
Diffstat (limited to 'include')
-rw-r--r--include/functions.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/functions.php b/include/functions.php
index 2b7f9ac59..8dc109f99 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);