diff options
author | ivan <ivan> | 2011-08-18 22:11:56 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-08-18 22:11:56 +0000 |
commit | dcf445d1195eebf098894021e1e45d1ec7b49e8f (patch) | |
tree | 16a69993ec14a47c9adaf9c5075bf3500e926c36 | |
parent | fef193f602ffa3ce056c4f3a13699138cdccf300 (diff) |
fix 477 reporting w/multiple classnums, RT#13922
-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; } |