From 8dbd57d5cb91bdc1ab6f13018c2ca1163dddef82 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Thu, 10 Jul 2014 22:22:51 +0800 Subject: Bug 1027617: Can't locate object method "_reverseoperator" when searching r=dylan,a=glob --- Bugzilla/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla') 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') { -- cgit v1.2.3-24-g4f1b