diff options
author | ivan <ivan> | 2011-08-18 23:56:06 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-08-18 23:56:06 +0000 |
commit | 0c1fa9eb26c907cedb566dba005f6b96e8c418a8 (patch) | |
tree | 695bb2b1e5fbc7dd75958eddc602e91e2653803b | |
parent | f913c65e8fb3ceb9a434b1701a1dac73e4e49c44 (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 c4a3e8487..b16aba446 100755 --- a/httemplate/search/cust_pkg.cgi +++ b/httemplate/search/cust_pkg.cgi @@ -187,6 +187,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 ### |