[-] BO : fix bug #PSCFV-2251 - http_build_query must fix arg_separator

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@15104 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
tDidierjean
2012-05-09 13:39:19 +00:00
parent 807252f5af
commit 0416403b37
44 changed files with 47 additions and 47 deletions
+1 -1
View File
@@ -96,7 +96,7 @@ try
$query = (isset($url['query'])) ? $url['query'] : '';
parse_str($query, $parseQuery);
unset($parseQuery['setShopContext']);
Tools::redirectAdmin($url['path'] . '?' . http_build_query($parseQuery));
Tools::redirectAdmin($url['path'] . '?' . http_build_query($parseQuery, '', '&'));
}
$context->currency = new Currency(Configuration::get('PS_CURRENCY_DEFAULT'));