From: Byron Jones Date: Thu, 10 Jul 2014 14:22:51 +0000 (+0800) Subject: Bug 1027617: Can't locate object method "_reverseoperator" when searching X-Git-Tag: bugzilla-4.5.5~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8dbd57d5cb91bdc1ab6f13018c2ca1163dddef82;p=thirdparty%2Fbugzilla.git Bug 1027617: Can't locate object method "_reverseoperator" when searching r=dylan,a=glob --- diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm index 18abf8d25f..7368040ccc 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') {