From 666c62af04e60f07a8e2adf278ce16a2930ce64e Mon Sep 17 00:00:00 2001
From: Laurent Destailleur <eldy@destailleur.fr>
Date: Tue, 6 Sep 2016 00:59:31 +0200
Subject: [PATCH] Fix http into https

---
 htdocs/core/class/google.class.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/htdocs/core/class/google.class.php b/htdocs/core/class/google.class.php
index b0649f575fc..e923ec12252 100644
--- a/htdocs/core/class/google.class.php
+++ b/htdocs/core/class/google.class.php
@@ -59,7 +59,7 @@ class GoogleAPI
 		$i=0;
 
 		// Desired address
-		$urladdress = "http://maps.google.com/maps/geo?q=".urlencode($address)."&output=xml&key=".$this->key;
+		$urladdress = "https://maps.google.com/maps/geo?q=".urlencode($address)."&output=xml&key=".$this->key;
 
 		// Retrieve the URL contents
 		$page = file_get_contents($urladdress);
-- 
GitLab