summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorByron Jones <glob@mozilla.com>2014-07-10 16:22:51 +0200
committerByron Jones <glob@mozilla.com>2014-07-10 16:22:51 +0200
commit8dbd57d5cb91bdc1ab6f13018c2ca1163dddef82 (patch)
treea862be76ef9bcdb0493dc6913e51aae5a5238776 /Bugzilla
parent1a76a897caf17488ce48c1db49a995588850c534 (diff)
downloadbugzilla-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.pm2
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') {