diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-16 04:55:10 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-16 04:55:10 +0200 |
commit | dbaf1c3aaf975ed78d8e8538b2df18ab9f47654b (patch) | |
tree | db913e59441783297ad780e89cd372897a6ec184 /report.cgi | |
parent | 6a2a01fbc44c5a777b3a612540a9ced23401c2bc (diff) | |
download | bugzilla-dbaf1c3aaf975ed78d8e8538b2df18ab9f47654b.tar.gz bugzilla-dbaf1c3aaf975ed78d8e8538b2df18ab9f47654b.tar.xz |
Bug 398308: Make Search.pm take a hashref for its "params" argument
instead of taking a CGI object.
r=mkanat, a=mkanat (module owner)
Diffstat (limited to 'report.cgi')
-rwxr-xr-x | report.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/report.cgi b/report.cgi index 89f5ff674..dd5a0bb15 100755 --- a/report.cgi +++ b/report.cgi @@ -127,7 +127,7 @@ my @axis_fields = ($row_field || EMPTY_COLUMN, # Clone the params, so that Bugzilla::Search can modify them my $params = new Bugzilla::CGI($cgi); my $search = new Bugzilla::Search('fields' => \@axis_fields, - 'params' => $params); + 'params' => scalar $params->Vars); my $query = $search->sql; $::SIG{TERM} = 'DEFAULT'; |