diff options
author | jeff <jeff> | 2009-07-17 02:29:09 +0000 |
---|---|---|
committer | jeff <jeff> | 2009-07-17 02:29:09 +0000 |
commit | e300f21783a78b911256e04cd7af86b1d57eeb04 (patch) | |
tree | 5cfab018df7e03e824bf88666de9411f72335c43 | |
parent | 725f4954f7d4efaf7cd3fd5e402a5dacd5d185b9 (diff) |
FSM, another missed file for 477 reporting
-rwxr-xr-x | httemplate/search/cust_pkg.cgi | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/httemplate/search/cust_pkg.cgi b/httemplate/search/cust_pkg.cgi index 4e35b91dd..a2ea3c582 100755 --- a/httemplate/search/cust_pkg.cgi +++ b/httemplate/search/cust_pkg.cgi @@ -162,11 +162,15 @@ my $money_char = $conf->config('money_char') || '$'; $search_hash{'query'} = $cgi->keywords; - for my $param (qw(agentnum magic status classnum pkgpart custom)) { - $search_hash{$param} = $cgi->param($param) - if $cgi->param($param); + for ( qw(agentnum magic status classnum pkgpart custom censustract) ) { + $search_hash{$_} = $cgi->param($_) if $cgi->param($_); } + +my @report_option = $cgi->param('report_option') + if $cgi->param('report_option'); +$search_hash{report_option} = join(',', @report_option) if @report_option; + ### # parse dates ### |