[-] FO : Fixed bug #PSCFI-1593 - Path error with CMS subcategory. The $fullPath variable wasn't declared in the right place.

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@6047 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
gBrunier
2011-04-22 14:19:49 +00:00
parent 16d8501d7c
commit 7b4eda5137
+2 -1
View File
@@ -749,6 +749,8 @@ class ToolsCore
if (empty($pipe))
$pipe = '>';
$fullPath = '';
if ($categoryType === 'products')
{
$category = Db::getInstance()->getRow('
@@ -766,7 +768,6 @@ class ToolsCore
ORDER BY c.level_depth ASC
LIMIT '.(int)$category['level_depth']);
$fullPath = '';
$n = 1;
$nCategories = (int)sizeof($categories);
foreach ($categories AS $category)