X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fsearch%2Fcust_pkg.cgi;fp=httemplate%2Fsearch%2Fcust_pkg.cgi;h=b061b178fcd96f0fee341e6a16c891c1031654bb;hp=f0408e48925c1f94ce8590a4d3f2bef56b416dcb;hb=affa8752dbe311130e0777d0368ba3fde8438641;hpb=7eacf77ffb9982f7048e4b73ecd9ca99901ae46a diff --git a/httemplate/search/cust_pkg.cgi b/httemplate/search/cust_pkg.cgi index f0408e489..b061b178f 100755 --- a/httemplate/search/cust_pkg.cgi +++ b/httemplate/search/cust_pkg.cgi @@ -161,9 +161,8 @@ for my $param (qw( censustract censustract2 )) { if grep { $_ eq $param } $cgi->param; } -my @report_option = $cgi->param('report_option') - if $cgi->param('report_option'); -$search_hash{report_option} = join(',', @report_option) if @report_option; +my $report_option = $cgi->param('report_option'); +$search_hash{report_option} = $report_option if $report_option; ### # parse dates @@ -249,7 +248,7 @@ my $html_init = sub { $text .= include( '/elements/email-link.html', 'search_hash' => \%search_hash, 'table' => 'cust_pkg', - ); + ). '

'; } return $text; };