Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ajlb committed Aug 7, 2020
1 parent e275037 commit 7205d47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion class.csv-to-api.php
Original file line number Diff line number Diff line change
Expand Up @@ -1346,7 +1346,7 @@ function list_filter( $list, $args = array(), $operator = 'AND' ) {
if ( ( 'AND' == $operator && $matched == $count )
|| ( 'OR' == $operator && $matched > 0 )
|| ( 'NOT' == $operator && 0 == $matched ) ) {
$filtered[$key] = $obj;
$filtered[] = $obj;
}
}

Expand Down

0 comments on commit 7205d47

Please sign in to comment.