diff options
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r-- | Bugzilla/Search.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 18abf8d25..7368040cc 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -2997,7 +2997,7 @@ sub _multiselect_isempty { my ($self, $args, $not) = @_; my ($field, $operator, $joins, $chart_id) = @$args{qw(field operator joins chart_id)}; my $dbh = Bugzilla->dbh; - $operator = $self->_reverseoperator($operator) if $not; + $operator = $self->_reverse_operator($operator) if $not; $not = $operator eq 'isnotempty' ? 'NOT' : ''; if ($field eq 'keywords') { |