From 1fc2440c9e792a488c3197f49023d3e98a6adeaf Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 18 Aug 2011 23:46:02 +0000 Subject: [PATCH] attempt fixing "multiple states" links, RT#13922 --- FS/FS/cust_pkg.pm | 13 +++++-------- httemplate/search/477partVI_census.html | 2 +- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/FS/FS/cust_pkg.pm b/FS/FS/cust_pkg.pm index 347c04bb1..c1a066d45 100644 --- a/FS/FS/cust_pkg.pm +++ b/FS/FS/cust_pkg.pm @@ -3018,16 +3018,13 @@ sub search { } @report_option; } - foreach my $any ( grep /^report_option_any/ keys %$params ) { + foreach my $any ( grep /^report_option_any/, keys %$params ) { my @report_option_any = (); - if ( exists($params->{$any}) ) { - if ( ref($params->{$any}) eq 'ARRAY' ) { - @report_option_any = @{ $params->{$any} }; - } elsif ( $params->{$any} =~ /^([,\d]*)$/ ) { - @report_option_any = split(',', $1); - } - + if ( ref($params->{$any}) eq 'ARRAY' ) { + @report_option_any = @{ $params->{$any} }; + } elsif ( $params->{$any} =~ /^([,\d]*)$/ ) { + @report_option_any = split(',', $1); } if (@report_option_any) { diff --git a/httemplate/search/477partVI_census.html b/httemplate/search/477partVI_census.html index 35de3491c..fc097ee50 100755 --- a/httemplate/search/477partVI_census.html +++ b/httemplate/search/477partVI_census.html @@ -172,7 +172,7 @@ my $html_foot = sub { ( &FS::Report::FCC_477::statenum2state($_) || 'None' ). ''. ''. - qq(). + qq(). $state_pkgcount{$_}. ' packages in '. $state_hash{$_}. ' census tracts'. ''. -- 2.11.0