summaryrefslogtreecommitdiff
path: root/httemplate/misc/process/timeworked.html
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2016-09-25 14:49:44 -0700
committerIvan Kohler <ivan@freeside.biz>2016-09-25 14:49:44 -0700
commita6a4b17cbf6359fecde5135727a59b1f7b54cd9f (patch)
tree978da1610c9e6b80bf2c6f2bc41257bbcd3d6779 /httemplate/misc/process/timeworked.html
parent840dbc8beed6098e3b7ae17dc2553a39f5476553 (diff)
scalar cgi param
Diffstat (limited to 'httemplate/misc/process/timeworked.html')
-rw-r--r--httemplate/misc/process/timeworked.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/httemplate/misc/process/timeworked.html b/httemplate/misc/process/timeworked.html
index 01752e1b7..aaccf056e 100644
--- a/httemplate/misc/process/timeworked.html
+++ b/httemplate/misc/process/timeworked.html
@@ -18,7 +18,7 @@ foreach my $transaction (
map { /^transactionid(\d+)$/; $1; } grep /^transactionid\d+$/, $cgi->param
) {
my $s = "multiplier${transaction}_";
- my %multipliers = map { /^$s(\d+)$/; $1 => $cgi->param("$s$1"); }
+ my %multipliers = map { /^$s(\d+)$/; $1 => scalar($cgi->param("$s$1")); }
grep /^$s\d+$/, $cgi->param;
my $msum = 0;
foreach(values %multipliers) {$msum += $_};