@@ -113,8 +113,7 @@ |
||
113 | 113 | foreach ($filters as $key => $value) { |
114 | 114 | $current = $this->getPropertyAccessor()->getValue($entity, $key); |
115 | 115 | $res = $res && (is_array($value) ? |
116 | - in_array($current, $value) : |
|
117 | - $current == $value |
|
116 | + in_array($current, $value) : $current == $value |
|
118 | 117 | ); |
119 | 118 | } |
120 | 119 |