// Fix $useSSL retro-compatibility

This commit is contained in:
rMalie
2012-02-13 09:19:10 +00:00
parent 25cae8d826
commit 61c819f8db
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;
}
/**