From: ivan Date: Thu, 18 Aug 2011 22:33:30 +0000 (+0000) Subject: fix 477 package links report_option arg, RT#13922 X-Git-Tag: freeside_2_1_3~27 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=743fcf73549f9290805ac1924df5e3cd87750500 fix 477 package links report_option arg, RT#13922 --- diff --git a/httemplate/search/477partVI_census.html b/httemplate/search/477partVI_census.html index 15d2b814b..fe224edba 100755 --- a/httemplate/search/477partVI_census.html +++ b/httemplate/search/477partVI_census.html @@ -144,10 +144,11 @@ my $link = 'cust_pkg.cgi?'. join(';', my $link_suffix = sub { my $row = shift; my $result = 'censustract='. $row->censustract. ';'; - $result .= 'report_option='. @row_option[$row->upload - 1] - if @row_option[$row->upload - 1]; - $result .= 'report_option='. @column_option[$row->download - 1] - if @column_option[$row->download - 1]; + my @ro = grep $_, + @row_option[$row->upload - 1], + @column_option[$row->download - 1], + ; + $result .= 'report_option='. join(',',@ro) if @ro; $result; };