From: Mark Wells Date: Thu, 23 Jan 2014 22:09:45 +0000 (-0800) Subject: minor syntax error X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=5985b40c4d8c5cd7b956589edf07b6fa0a4a3dd6 minor syntax error --- diff --git a/httemplate/edit/process/quick-cust_pkg.cgi b/httemplate/edit/process/quick-cust_pkg.cgi index 95c92432e..c3ab6fec3 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 )