From 1f1a6ff898a905b0fd0938d65cef3a24bd83a9f8 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 git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16763 b9a71923-0436-4b27-9f14-aed3839534dd --- 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); }