summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Bugzilla/Search.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index 2d1f3af11..b196fca3b 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -1999,7 +1999,7 @@ sub _quote_unless_numeric {
my $is_numeric = $numeric_operator && $numeric_field && $numeric_value;
# These operators are really numeric operators with numeric fields.
- $numeric_operator = grep { $_ eq $operator } keys SIMPLE_OPERATORS;
+ $numeric_operator = grep { $_ eq $operator } keys %{ SIMPLE_OPERATORS() };
if ($is_numeric) {
my $quoted = $value;