diff options
-rwxr-xr-x | httemplate/search/cust_pkg.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |