]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1027617: Can't locate object method "_reverseoperator" when searching
authorByron Jones <glob@mozilla.com>
Thu, 10 Jul 2014 14:22:51 +0000 (22:22 +0800)
committerByron Jones <glob@mozilla.com>
Thu, 10 Jul 2014 14:22:51 +0000 (22:22 +0800)
r=dylan,a=glob

Bugzilla/Search.pm

index 18abf8d25fd3a48579a1d773fe7d7dc269c65d21..7368040cccaa6e86f0ab4d65402fca978c409374 100644 (file)
@@ -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') {