From: David Lawrence Date: Thu, 5 Jan 2017 20:30:53 +0000 (+0000) Subject: Bug 1209242 - Can't locate object method "_reverseoperator" via package "Bugzilla... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e1d3853880f04259b011524d4c3ded236b65674;p=thirdparty%2Fbugzilla.git Bug 1209242 - Can't locate object method "_reverseoperator" via package "Bugzilla::Search" at /data/www/bugzilla.mozilla.org/Bugzilla/Search.pm line 3134. --- 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') {