diff options
| author | ivan <ivan> | 2011-08-18 23:56:05 +0000 |
|---|---|---|
| committer | ivan <ivan> | 2011-08-18 23:56:05 +0000 |
| commit | 0c4d562460ae86690a741d7f1c263e01f1548f28 (patch) | |
| tree | 7662e26d6c853e6fcfd8f50aafc5dbbc4984f1d7 | |
| parent | 7a23e052684421ae96c3cc407058dfe5cf01d7d3 (diff) | |
attempt fixing "multiple states" links, RT#13922
| -rwxr-xr-x | httemplate/search/cust_pkg.cgi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/httemplate/search/cust_pkg.cgi b/httemplate/search/cust_pkg.cgi index b061b178f..8f4cce199 100755 --- a/httemplate/search/cust_pkg.cgi +++ b/httemplate/search/cust_pkg.cgi @@ -164,6 +164,10 @@ for my $param (qw( censustract censustract2 )) { my $report_option = $cgi->param('report_option'); $search_hash{report_option} = $report_option if $report_option; +for my $param (grep /^report_option_any/, $cgi->params) { + $search_hash{$param} = $cgi->param($param); +} + ### # parse dates ### |
