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

This commit is contained in:
vAugagneur
2012-06-15 07:14:58 +00:00
parent 0a1e9d2124
commit 140012c62b
+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
);
}