From 5558edaa362948f5586451de3fdc0d1ee739ea45 Mon Sep 17 00:00:00 2001 From: ivan Date: Thu, 18 Aug 2011 22:11:58 +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 67e4c05c3..1c34d3b8a 100755 --- a/httemplate/search/cust_pkg.cgi +++ b/httemplate/search/cust_pkg.cgi @@ -174,7 +174,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