// 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
+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;
}
/**
@@ -31,6 +31,7 @@
class BankwirePaymentModuleFrontController extends ModuleFrontController
{
public $display_column_left = false;
public $ssl = true;
/**
* @see FrontController::initContent()
@@ -31,6 +31,7 @@
class ChequePaymentModuleFrontController extends ModuleFrontController
{
public $display_column_left = false;
public $ssl = true;
/**
* @see FrontController::initContent()
@@ -30,6 +30,8 @@
*/
class FavoriteproductsAccountModuleFrontController extends ModuleFrontController
{
public $ssl = true;
public function init()
{
parent::init();