From: ivan Date: Mon, 2 Jun 2008 17:58:48 +0000 (+0000) Subject: fix error apply fractional seconds X-Git-Tag: root_of_webpay_support~607 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=f00a18b9f7d4d7a4cd2e352555640d8d8422d3c1;p=freeside.git fix error apply fractional seconds --- 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 ), }; }