[-] CLASSES : fixed bug #PSCFV-2836 - Warning on Category::recurseLiteCategTree()

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@16030 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
vAugagneur
2012-06-15 07:14:58 +00:00
parent b2b29c4270
commit 97df2a2095
+8 -2
View File
@@ -256,12 +256,18 @@ class CategoryCore extends ObjectModel
$children[] = $categ->recurseLiteCategTree($max_depth, $current_depth + 1, $id_lang, $excluded_ids_array);
}
}
if (is_array($this->description))
foreach ($this->description as $lang => $description)
$this->description[$lang] = Category::getDescriptionClean($description);
else
$this->description = Category::getDescriptionClean($this->description);
return array(
'id' => (int)$this->id_category,
'link' => Context::getContext()->link->getCategoryLink($this->id, $this->link_rewrite),
'name' => $this->name,
'desc'=> Category::getDescriptionClean($this->description),
'desc'=> $this->description,
'children' => $children
);
}