diff options
Diffstat (limited to 'LedgerSMB')
-rwxr-xr-x | LedgerSMB/Form.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LedgerSMB/Form.pm b/LedgerSMB/Form.pm index fbf678af..f0a581cd 100755 --- a/LedgerSMB/Form.pm +++ b/LedgerSMB/Form.pm @@ -554,7 +554,7 @@ sub parse_amount { my $decimalplaces = length $1 + length $2; $amount = new Math::BigFloat($amount); - $amount->accuracy($decimalplaces); + #$amount->accuracy($decimalplaces); return ( $amount * 1 ); } |