From ad927cf5dffe32101954ec0d97825313a546443c Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 18 Aug 2011 22:11:57 +0000 Subject: [PATCH] fix 477 reporting w/multiple classnums, RT#13922 --- httemplate/search/cust_pkg.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httemplate/search/cust_pkg.cgi b/httemplate/search/cust_pkg.cgi index f9cb9f82f..f0408e489 100755 --- a/httemplate/search/cust_pkg.cgi +++ b/httemplate/search/cust_pkg.cgi @@ -151,7 +151,7 @@ for (qw( agentnum custnum magic status custom cust_fields pkgbatch )) { #arrays for my $param (qw( pkgpart classnum )) { - $search_hash{$param} = [ $cgi->param($param) ]; + $search_hash{$param} = [ $cgi->param($param) ] if grep { $_ eq $param } $cgi->param; } -- 2.11.0