// Fix $useSSL retro-compatibility

This commit is contained in:
rMalie
2012-02-13 09:19:10 +00:00
parent c1ba6d3a92
commit 2ab41f09fe
4 changed files with 9 additions and 1 deletions

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;
}
/**