From f00a18b9f7d4d7a4cd2e352555640d8d8422d3c1 Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 2 Jun 2008 17:58:48 +0000 Subject: fix error apply fractional seconds --- httemplate/misc/process/timeworked.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ), }; } -- cgit v1.2.1