Skip to content

Commit

Permalink
Update administrator/components/com_finder/src/Model/ItemModel.php
Browse files Browse the repository at this point in the history
Co-authored-by: Quy <quy@fluxbb.org>
  • Loading branch information
Hackwar and Quy committed May 19, 2022
1 parent 4ed8f39 commit d536be1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -75,7 +75,7 @@ public function getTerms()
->leftJoin($db->quoteName('#__finder_terms', 't') . ' ON ' . $db->quoteName('t.term_id') . ' = ' . $db->quoteName('l.term_id'))
->where($db->quoteName('l.link_id') . ' = :link_id')
->order('l.weight')
->bind(':link_id', $link_id);
->bind(':link_id', $link_id, ParameterType::INTEGER);

$db->setQuery($query);

Expand Down

0 comments on commit d536be1

Please sign in to comment.