From 3034abf97db1bcabb0fc81e565f3f6cccd9de827 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 23 Jan 2009 00:49:40 +0000 Subject: [PATCH] typo in rounding the amounts returned by renew_info, RT#4623 --- FS/FS/ClientAPI/MyAccount.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm index cbc3dba90..213f6b45b 100644 --- a/FS/FS/ClientAPI/MyAccount.pm +++ b/FS/FS/ClientAPI/MyAccount.pm @@ -1130,7 +1130,7 @@ sub renew_info { 'bill_date_pretty' => time2str('%x', $_->bill), 'renew_date' => $renew_date, 'renew_date_pretty' => time2str('%x', $renew_date), - 'amount' => sprintf('.%2f', $total), + 'amount' => sprintf('%.2f', $total), }; } @cust_pkg; -- 2.11.0