Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
esbenp committed Jul 4, 2022
1 parent 1d57bf0 commit 96761b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LaravelController.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ protected function parseFilterGroups(array $filter_groups)
$or = false;
if (array_key_exists('or', $group)) {
if ($group['or'] === 'true') {
$group['or'] = true;
$or = true;
} else if ($group['or'] === 'false') {
$group['or'] = false;
$or = false;
}
}

Expand Down

0 comments on commit 96761b3

Please sign in to comment.