diff options
author | ivan <ivan> | 2011-08-18 23:59:22 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-08-18 23:59:22 +0000 |
commit | 006b2392be94f9670eddf3d01ba89c00f9c16c05 (patch) | |
tree | 74b0cd3e93379564d62ffa1bd181e4c0e42ded94 | |
parent | 1451f08927d675651f1fec1fda13cf3267bf0867 (diff) |
fix "multiple states" links, RT#13922
-rwxr-xr-x | httemplate/search/477partVI_census.html | 2 | ||||
-rwxr-xr-x | httemplate/search/cust_pkg.cgi | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/httemplate/search/477partVI_census.html b/httemplate/search/477partVI_census.html index b65a570cb..534d872f3 100755 --- a/httemplate/search/477partVI_census.html +++ b/httemplate/search/477partVI_census.html @@ -173,7 +173,7 @@ my $html_foot = sub { '</TD>'. '<TD>'. qq(<A HREF="${link}censustract2=$_$roa_r$roa_c$roa_t">). - #can't get this count to match the link# $state_pkgcount{$_}. + $state_pkgcount{$_}. ' packages</A> in '. $state_hash{$_}. ' census tracts'. '</TD>'. diff --git a/httemplate/search/cust_pkg.cgi b/httemplate/search/cust_pkg.cgi index 8f4cce199..297edee90 100755 --- a/httemplate/search/cust_pkg.cgi +++ b/httemplate/search/cust_pkg.cgi @@ -164,7 +164,7 @@ 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) { +for my $param (grep /^report_option_any/, $cgi->param) { $search_hash{$param} = $cgi->param($param); } |