We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a57d95 commit c67e920Copy full SHA for c67e920
components/com_finder/src/Model/SearchModel.php
@@ -286,7 +286,7 @@ protected function getListQuery()
286
return $query;
287
}
288
289
- $included = call_user_func_array('array_merge', $this->includedTerms);
+ $included = call_user_func_array('array_merge', array_values($this->includedTerms));
290
$query->join('INNER', $this->_db->quoteName('#__finder_links_terms') . ' AS m ON m.link_id = l.link_id')
291
->where('m.term_id IN (' . implode(',', $included) . ')');
292
0 commit comments