Fix articles categories module display children categories multiple times (#42925)

This commit is contained in:
Tuan Pham Ngoc 2024-03-04 19:56:12 +07:00 committed by GitHub
parent 78d91ea137
commit 6023e5cee7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class ArticlesCategoriesHelper implements DatabaseAwareInterface
}
// Get all the children categories of this node
$childrenCategories = $parentCategory->getChildren(true);
$childrenCategories = $parentCategory->getChildren();
$count = $moduleParams->get('count', 0);