Major upgrade, with new filter system, and many bug fixes. #618

Merged
Llewellyn merged 25 commits from staging into master 2020-12-12 06:53:26 +00:00
3 changed files with 4 additions and 3 deletions
Showing only changes of commit 732521b3ab - Show all commits

View File

@ -15399,7 +15399,8 @@ class Interpretation extends Fields
$query .= PHP_EOL . $this->_t(3)
. "\$categoryId = implode(',', \$categoryId);";
$query .= PHP_EOL . $this->_t(3)
. "\$query->where('a.category IN (' . \$categoryId . ')');";
. "\$query->where('a." . $categoryCodeName
. " IN (' . \$categoryId . ')');";
$query .= PHP_EOL . $this->_t(2) . "}";
$query .= PHP_EOL;
}

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 . ')');
}

View File

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