Fixed gcategory column naming issue in array query.

This commit is contained in:
2020-11-30 18:49:12 +02:00
parent 3324576c95
commit 732521b3ab
3 changed files with 4 additions and 3 deletions

View File

@ -423,7 +423,7 @@ class ComponentbuilderModelFields extends JModelList
{
ArrayHelper::toInteger($categoryId);
$categoryId = implode(',', $categoryId);
$query->where('a.category IN (' . $categoryId . ')');
$query->where('a.catid IN (' . $categoryId . ')');
}