diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gl.pl | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1343,7 +1343,8 @@ sub post { $credit += $cr; } - if ( $form->round_amount( $debit, 2 ) != $form->round_amount( $credit, 2 ) ) + if ($form->round_amount( $debit, 2 ) != $form->round_amount( $credit, 2 ) || + $debit->is_nan || $credit->is_nan) { $form->error( $locale->text('Out of balance transaction!') ); } |