|
Lines 292-297
sub _get_sort_bin {
Link Here
|
| 292 |
|
292 |
|
| 293 |
# Check the fields against values in the item |
293 |
# Check the fields against values in the item |
| 294 |
my $property = $item->$item_property; |
294 |
my $property = $item->$item_property; |
|
|
295 |
next RULE unless defined($property); |
| 295 |
if ( ( $comparator eq 'eq' || $comparator eq '=' ) && ( $property eq $value ) ) { |
296 |
if ( ( $comparator eq 'eq' || $comparator eq '=' ) && ( $property eq $value ) ) { |
| 296 |
$match = 1; |
297 |
$match = 1; |
| 297 |
} elsif ( ( $comparator eq 'ne' || $comparator eq '!=' ) && ( $property ne $value ) ) { |
298 |
} elsif ( ( $comparator eq 'ne' || $comparator eq '!=' ) && ( $property ne $value ) ) { |
| 298 |
- |
|
|