From ba1c4b9f3aa4c678ad6cbe0962e680195ef81b85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Gaillard?= Date: Tue, 4 Jun 2013 16:27:47 +0200 Subject: [PATCH] [-] FO: http page should be redirected to http when accessed with https #PSCFV-9212 --- classes/controller/FrontController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/controller/FrontController.php b/classes/controller/FrontController.php index 14dc91682..798446e34 100755 --- a/classes/controller/FrontController.php +++ b/classes/controller/FrontController.php @@ -108,7 +108,7 @@ class FrontControllerCore extends Controller // If current URL use SSL, set it true (used a lot for module redirect) if (Tools::usingSecureMode()) - $useSSL = $this->ssl = true; + $useSSL = true; // For compatibility with globals, DEPRECATED as of version 1.5 $css_files = $this->css_files;