I'm using 1.4.1.
I created the category as
It is displayed asaaa
-bbb
--ccc
ddd
eee
I thought that "</ul>" was insufficient and corrected the script.aaa
-bbb
--ccc
-ddd
-eee
inc/category.php
before
Code: Select all
if ($this->treeTab[$y]["level"] < $open) {
$output .= "</li>\n".str_repeat("\t", $this->treeTab[$y]["level"]+2)."</ul>\n".str_repeat("\t", $this->treeTab[$y]["level"]+1)."</li>\n";
}
Code: Select all
if ($this->treeTab[$y]["level"] < $open) {
$output .= "</li>\n";
for ($down = $open; $down > $this->treeTab[$y]["level"]; $down--){
$output .= str_repeat("\t", $down+1)."</ul>\n";
}
$output .= str_repeat("\t", $this->treeTab[$y]["level"]+1)."</li>\n";
}