From e300f21783a78b911256e04cd7af86b1d57eeb04 Mon Sep 17 00:00:00 2001 From: jeff Date: Fri, 17 Jul 2009 02:29:09 +0000 Subject: [PATCH] FSM, another missed file for 477 reporting --- httemplate/search/cust_pkg.cgi | 10 +++++++--- 1 file 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 ### -- 2.11.0