// Fix $useSSL retro-compatibility

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@13239 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2012-02-13 09:19:10 +00:00
parent 413a838821
commit a5d5173438
4 changed files with 9 additions and 1 deletions
+5 -1
View File
@@ -63,7 +63,11 @@ class FrontControllerCore extends Controller
global $useSSL;
parent::__construct();
$useSSL = $this->ssl;
if (isset($useSSL))
$this->ssl = $useSSL;
else
$useSSL = $this->ssl;
}
/**