summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Wells <mark@freeside.biz>2014-01-23 14:09:45 -0800
committerMark Wells <mark@freeside.biz>2014-01-23 14:09:45 -0800
commit5985b40c4d8c5cd7b956589edf07b6fa0a4a3dd6 (patch)
treeef5c1c1afa4dd7edace58d9795799883e80316d1
parent8edb7f0ed92d28c935a8e2c26b5b645dccc7704e (diff)
minor syntax error
-rw-r--r--httemplate/edit/process/quick-cust_pkg.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/edit/process/quick-cust_pkg.cgi b/httemplate/edit/process/quick-cust_pkg.cgi
index 95c9243..c3ab6fe 100644
--- a/httemplate/edit/process/quick-cust_pkg.cgi
+++ b/httemplate/edit/process/quick-cust_pkg.cgi
@@ -134,7 +134,7 @@ my %hash = (
$hash{'custnum'} = $cust_main->custnum if $cust_main;
my @cust_pkg_usageprice = ();
-foreach my $quantity_param ( grep ( $cgi->param($_) && $cgi->param($_) > 0 ),
+foreach my $quantity_param ( grep { $cgi->param($_) && $cgi->param($_) > 0 }
grep /^usagepricenum(\d+)_quantity$/,
$cgi->param
)