FSM, another missed file for 477 reporting
authorjeff <jeff>
Fri, 17 Jul 2009 02:29:09 +0000 (02:29 +0000)
committerjeff <jeff>
Fri, 17 Jul 2009 02:29:09 +0000 (02:29 +0000)
httemplate/search/cust_pkg.cgi

index 4e35b91..a2ea3c5 100755 (executable)
@@ -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
 ###