summaryrefslogtreecommitdiff
path: root/httemplate
diff options
context:
space:
mode:
authorivan <ivan>2008-06-02 17:58:48 +0000
committerivan <ivan>2008-06-02 17:58:48 +0000
commitf00a18b9f7d4d7a4cd2e352555640d8d8422d3c1 (patch)
tree053877bba61c94e3d78122e38a5d535bc1fe8681 /httemplate
parent4776afec802191dac6dcaffe04c8295b57f01c57 (diff)
fix error apply fractional seconds
Diffstat (limited to 'httemplate')
-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 c589d768f..860118e0c 100644
--- a/httemplate/misc/process/timeworked.html
+++ b/httemplate/misc/process/timeworked.html
@@ -45,7 +45,7 @@ foreach my $transaction (
'custnum' => $customer,
'transaction_id' => $transaction,
'seconds' => $seconds{$customer},
- 'support' => $seconds{$customer} * $msum,
+ 'support' => int( $seconds{$customer} * $msum ),
};
}