From a3092c2b0c22001980904099c290b88bb7e890b6 Mon Sep 17 00:00:00 2001 From: vAugagneur Date: Wed, 8 Aug 2012 11:48:25 +0000 Subject: [PATCH] [-] CORE : fixed bug #PSCFV-3406 --- classes/Link.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Link.php b/classes/Link.php index fcdb67999..0c9b58d3a 100644 --- a/classes/Link.php +++ b/classes/Link.php @@ -318,7 +318,7 @@ class LinkCore // If the module has its own route ... just use it ! if (Dispatcher::getInstance()->hasRoute('module-'.$module.'-'.$controller, $id_lang)) - return $this->getPageLink('module-'.$module.'-'.$controller, $params); + return $this->getPageLink('module-'.$module.'-'.$controller, $ssl, $id_lang, $params); else return $url.Dispatcher::getInstance()->createUrl('module', $id_lang, $params, $this->allow); }