// Fix little bug

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16450 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mDeflotte
2012-07-17 08:41:38 +00:00
parent a606873630
commit 303bfdd00c
+1 -1
View File
@@ -503,7 +503,7 @@ class LinkCore
$vars[urlencode($k)] = $value;
else
{
foreach (explode('&', http_build_query(array($k => $value)), '', '&') as $key => $val)
foreach (explode('&', http_build_query(array($k => $value), '', '&')) as $key => $val)
{
$data = explode('=', $val);
$vars[urldecode($data[0])] = $data[1];