diff options
author | Byron Jones <glob@mozilla.com> | 2014-07-10 16:22:51 +0200 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-07-10 16:22:51 +0200 |
commit | 8dbd57d5cb91bdc1ab6f13018c2ca1163dddef82 (patch) | |
tree | a862be76ef9bcdb0493dc6913e51aae5a5238776 /Bugzilla | |
parent | 1a76a897caf17488ce48c1db49a995588850c534 (diff) | |
download | bugzilla-8dbd57d5cb91bdc1ab6f13018c2ca1163dddef82.tar.gz bugzilla-8dbd57d5cb91bdc1ab6f13018c2ca1163dddef82.tar.xz |
Bug 1027617: Can't locate object method "_reverseoperator" when searching
r=dylan,a=glob
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Search.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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') { |