Skip to content

Commit

Permalink
Fixing implode() arg order in form.php
Browse files Browse the repository at this point in the history
  • Loading branch information
trob committed Jun 14, 2021
1 parent f3791e2 commit f17ef55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion administrator/components/com_fabrik/models/form.php
Expand Up @@ -366,7 +366,7 @@ protected function _makeFormGroups($currentGroups)

if (!empty($currentGroups))
{
$query->where('group_id NOT IN (' . implode($currentGroups, ', ') . ')');
$query->where('group_id NOT IN (' . implode(', ' , $currentGroups) . ')');
}

$db->setQuery($query);
Expand Down

0 comments on commit f17ef55

Please sign in to comment.