summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search.pm
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-05-01 23:18:15 +0200
committerDave Lawrence <dlawrence@mozilla.com>2012-05-01 23:18:15 +0200
commit6544d2b6b9e59642a626d3766fa3ca00683c587f (patch)
tree36fc4c980c3124085c138d1a7331d644e3be0671 /Bugzilla/Search.pm
parentf7faa2621209db7f8732e2ff92264efdcf588166 (diff)
downloadbugzilla-6544d2b6b9e59642a626d3766fa3ca00683c587f.tar.gz
bugzilla-6544d2b6b9e59642a626d3766fa3ca00683c587f.tar.xz
Fixed earlier declaration error in Bugzilla/Search.pm
Diffstat (limited to 'Bugzilla/Search.pm')
-rw-r--r--Bugzilla/Search.pm1
1 files changed, 0 insertions, 1 deletions
diff --git a/Bugzilla/Search.pm b/Bugzilla/Search.pm
index c0a58c3f0..6f1061e2c 100644
--- a/Bugzilla/Search.pm
+++ b/Bugzilla/Search.pm
@@ -1747,7 +1747,6 @@ sub do_search_function {
sub _do_operator_function {
my ($self, $func_args) = @_;
my $operator = $func_args->{operator};
- my $operator_func = OPERATORS->{$operator};
my $operator_func = OPERATORS->{$$operator}
|| ThrowCodeError("search_field_operator_unsupported",
{ operator => $$operator });