diff --git a/src/Bundle/ChillPersonBundle/Export/Filter/ReferrerJobFilter.php b/src/Bundle/ChillPersonBundle/Export/Filter/ReferrerJobFilter.php index cce0a9318..fe9e51b27 100644 --- a/src/Bundle/ChillPersonBundle/Export/Filter/ReferrerJobFilter.php +++ b/src/Bundle/ChillPersonBundle/Export/Filter/ReferrerJobFilter.php @@ -75,7 +75,7 @@ class ReferrerJobFilter implements FilterInterface $qb->join('acpw.referrers', 'r'); $where = $qb->getDQLPart('where'); - $clause = $qb->expr()->eq('r.userJob', ':userjob'); + $clause = $qb->expr()->in('r.userJob', ':userjob'); if ($where instanceof Andx) { $where->add($clause); diff --git a/src/Bundle/ChillPersonBundle/Export/Filter/ReferrerScopeFilter.php b/src/Bundle/ChillPersonBundle/Export/Filter/ReferrerScopeFilter.php index c895276f1..0d4a22532 100644 --- a/src/Bundle/ChillPersonBundle/Export/Filter/ReferrerScopeFilter.php +++ b/src/Bundle/ChillPersonBundle/Export/Filter/ReferrerScopeFilter.php @@ -74,7 +74,7 @@ class ReferrerScopeFilter implements FilterInterface $qb->join('acpw.referrers', 'r'); $where = $qb->getDQLPart('where'); - $clause = $qb->expr()->eq('r.mainScope', ':scope'); + $clause = $qb->expr()->in('r.mainScope', ':scope'); if ($where instanceof Andx) { $where->add($clause);