From 352a1f636c190c1f791a5dea7855a5c16ea75ca6 Mon Sep 17 00:00:00 2001 From: vAugagneur Date: Mon, 24 Sep 2012 08:17:17 +0000 Subject: [PATCH] [-] CORE : fixed bug #PSCFV-4272 git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@17487 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 81d616857..99c92a083 100644 --- a/classes/Link.php +++ b/classes/Link.php @@ -408,7 +408,7 @@ class LinkCore $request = urlencode($request); parse_str($request, $request); } - unset($request['controller']); + unset($request['controller'], $request['module']); $uri_path = Dispatcher::getInstance()->createUrl($controller, $id_lang, $request); $url = ($ssl && $this->ssl_enable) ? Tools::getShopDomainSsl(true) : Tools::getShopDomain(true);