diff options
author | ivan <ivan> | 2011-08-18 23:56:04 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-08-18 23:56:04 +0000 |
commit | 1451f08927d675651f1fec1fda13cf3267bf0867 (patch) | |
tree | 1c877cdc6664de545ec55d49b67a4126d5542328 | |
parent | 78df40febe5861c992e846b33422bffe39df63cd (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 ### |