summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2014-01-03 00:08:17 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2014-01-03 00:08:17 +0100
commit0ac53ed9b6735eb6b5f49aa1574901a660c58657 (patch)
tree0c4dde27cf4945ad712259649bd595e1ed85dd9d /Bugzilla
parentfd32a1a35d928726c4f9c06d1c573825672a29d6 (diff)
downloadbugzilla-0ac53ed9b6735eb6b5f49aa1574901a660c58657.tar.gz
bugzilla-0ac53ed9b6735eb6b5f49aa1574901a660c58657.tar.xz
Fix on checkin for bug 543432
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 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;