summaryrefslogtreecommitdiff
path: root/httemplate/misc/process/timeworked.html
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2016-09-25 14:49:38 -0700
committerIvan Kohler <ivan@freeside.biz>2016-09-25 14:49:38 -0700
commitfe58901b811f0ab26e8f93a9563fb93bc98e4c19 (patch)
tree035648bdef5c41f0e05929edc543692837fec40a /httemplate/misc/process/timeworked.html
parent26484e261d7a6bd833d041b417b60e63db19edf7 (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 += $_};