summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorivan <ivan>2011-08-18 22:11:57 +0000
committerivan <ivan>2011-08-18 22:11:57 +0000
commitad927cf5dffe32101954ec0d97825313a546443c (patch)
tree46b303022e91f6ea930eb13ade05973b3ca5d9ad /httemplate
parent613464e6e7b634586bca9fabac145d2850b0f0f7 (diff)
fix 477 reporting w/multiple classnums, RT#13922
Diffstat (limited to 'httemplate')
-rwxr-xr-xhttemplate/search/cust_pkg.cgi2
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;
}