From 8e1d3853880f04259b011524d4c3ded236b65674 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Thu, 5 Jan 2017 20:30:53 +0000 Subject: Bug 1209242 - Can't locate object method "_reverseoperator" via package "Bugzilla::Search" at /data/www/bugzilla.mozilla.org/Bugzilla/Search.pm line 3134. --- Bugzilla/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Search.pm') diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index cddedb3f0..3623fa6d9 100644 --- a/Bugzilla/Search.pm +++ b/Bugzilla/Search.pm @@ -3157,7 +3157,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') { -- cgit v1.2.3-24-g4f1b