From 0ac53ed9b6735eb6b5f49aa1574901a660c58657 Mon Sep 17 00:00:00 2001 From: Frédéric Buclin Date: Fri, 3 Jan 2014 00:08:17 +0100 Subject: Fix on checkin for bug 543432 --- Bugzilla/Search.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla') 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; -- cgit v1.2.3-24-g4f1b