//fixed bug on category tree

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9622 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
vAugagneur
2011-10-25 12:00:13 +00:00
parent 5d864982f5
commit cf176f57a0
+1 -1
View File
@@ -86,7 +86,7 @@ class HelperCore
if (sizeof($selected_cat) > 0)
{
if (isset($selected_cat[0]))
$html .= 'var selectedCat = "'.implode(',', $selected_cat).'":';
$html .= 'var selectedCat = "'.implode(',', $selected_cat).'";';
else
$html .= 'var selectedCat = "'.implode(',', array_keys($selected_cat)).'";';
}