[freeside-commits] freeside/httemplate/search cust_pkg.cgi, 1.69.2.6, 1.69.2.7

Ivan,,, ivan at wavetail.420.am
Thu Aug 18 16:15:00 PDT 2011


Update of /home/cvs/cvsroot/freeside/httemplate/search
In directory wavetail.420.am:/tmp/cvs-serv13438

Modified Files:
      Tag: FREESIDE_2_1_BRANCH
	cust_pkg.cgi 
Log Message:
fix 477 package links report_option arg, RT#13922

Index: cust_pkg.cgi
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/cust_pkg.cgi,v
retrieving revision 1.69.2.6
retrieving revision 1.69.2.7
diff -u -w -d -r1.69.2.6 -r1.69.2.7
--- cust_pkg.cgi	18 Aug 2011 22:11:58 -0000	1.69.2.6
+++ cust_pkg.cgi	18 Aug 2011 23:14:58 -0000	1.69.2.7
@@ -184,9 +184,8 @@
     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
@@ -289,7 +288,7 @@
     $text .= include( '/elements/email-link.html',
                 'search_hash' => \%search_hash,
                 'table'       => 'cust_pkg',
-                );
+                ). '<BR><BR>';
   }
   return $text;
 };



More information about the freeside-commits mailing list