From 40a35a628dffe559df0da8abae2ae09808011d53 Mon Sep 17 00:00:00 2001
From: Rob Hoelz <rob@hoelz.ro>
Date: Wed, 29 May 2013 20:55:22 +0200
Subject: [PATCH] Don't verify SSL peers in geturl

---
 include/functions.php | 1 +
 1 file changed, 1 insertion(+)

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