Bruno17 / MIGX

MIGX for revo 2.2 and above
83 stars 78 forks source link

Add "NOT IN" filter in filterItems #433

Open black-meridian opened 3 months ago

black-meridian commented 3 months ago

components/migx/model/migx/migx.class.php

2390

case 'notin': $operand = is_array($operand) ? $operand : explode(',', $operand); $output = !in_array($subject, $operand) ? $then : (isset($else) ? $else : ''); break;