summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search.pm
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2017-01-05 21:30:53 +0100
committerDavid Lawrence <dkl@mozilla.com>2017-01-05 21:31:01 +0100
commit8e1d3853880f04259b011524d4c3ded236b65674 (patch)
treed770e2d0937e2d1313716e9e43d7489838ec61cd /Bugzilla/Search.pm
parent3e9b1df52f4b1a65559380ec3989b89fefda41ff (diff)
downloadbugzilla-8e1d3853880f04259b011524d4c3ded236b65674.tar.gz
bugzilla-8e1d3853880f04259b011524d4c3ded236b65674.tar.xz
Bug 1209242 - Can't locate object method "_reverseoperator" via package "Bugzilla::Search" at /data/www/bugzilla.mozilla.org/Bugzilla/Search.pm line 3134.
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r--Bugzilla/Search.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index cddedb3f0..3623fa6d9 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -3157,7 +3157,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') {