Skip to content
This repository has been archived by the owner on Apr 26, 2022. It is now read-only.

Commit

Permalink
close #228 Breadcrumbs issue solved.
Browse files Browse the repository at this point in the history
  • Loading branch information
cuneytsenturk committed Oct 23, 2015
1 parent 7aa3bea commit fbaf18c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/library/seo.php
Expand Up @@ -236,7 +236,7 @@ public function getParentCategoriesIds($category_id = 0) {

$data[$category_id][] = $query->row['parent_id'];

$data[$category_id] = array_merge($data[$category_id], $this->getParentCategoriesIds($query->row['parent_id']));
$data[$category_id] = array_merge($this->getParentCategoriesIds($query->row['parent_id']), $data[$category_id]);
}

return $data[$category_id];
Expand Down

1 comment on commit fbaf18c

@stlewis59
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks Cüneyt"!

Please sign in to comment.