[-] BO : fix #PSFV-852 : url encoded incorrect when in the search there is specials character

This commit is contained in:
lLefevre
2012-04-12 14:00:53 +00:00
parent 1d28939be9
commit 41aaeb90ff
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -485,7 +485,7 @@ class LinkCore
if ($if_nb && $if_sort && $if_pagination)
{
if (!is_array($value))
$vars[urlencode($k)] = urlencode($value);
$vars[urlencode($k)] = $value;
else
{
foreach (explode('&', http_build_query(array($k => $value))) as $key => $val)