[freeside-commits] freeside/httemplate/search cust_pkg.cgi, 1.57, 1.58

Jeff Finucane,420,, jeff at wavetail.420.am
Sun Jul 26 20:26:49 PDT 2009


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

Modified Files:
	cust_pkg.cgi 
Log Message:
FCC from 477 improvements #4912

Index: cust_pkg.cgi
===================================================================
RCS file: /home/cvs/cvsroot/freeside/httemplate/search/cust_pkg.cgi,v
retrieving revision 1.57
retrieving revision 1.58
diff -u -d -r1.57 -r1.58
--- cust_pkg.cgi	17 Jul 2009 02:29:09 -0000	1.57
+++ cust_pkg.cgi	27 Jul 2009 03:26:47 -0000	1.58
@@ -162,10 +162,14 @@
   
   $search_hash{'query'} = $cgi->keywords;
   
-  for ( qw(agentnum magic status classnum pkgpart custom censustract) ) {
+  for ( qw(agentnum magic status classnum pkgpart custom ) ) {
     $search_hash{$_} = $cgi->param($_) if $cgi->param($_);
   }
 
+  for my $param ( qw(censustract) ) {
+    $search_hash{$param} = $cgi->param($param) || ''
+      if ( grep { /$param/ } $cgi->param );
+  }
 
 my @report_option = $cgi->param('report_option')
   if $cgi->param('report_option');



More information about the freeside-commits mailing list