X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=gl%2Fbank_transfer.php;h=d08952e2ad4c8e1de51cf0a7013514ae1abd2494;hb=0921882eb607de6fa86e19e3752f642638aa4358;hp=6deb5fe2ed1321e69b0fddb3ebdb90e77b987d3f;hpb=34b0f24a4408b75559778baa6447c02119373999;p=fa-stable.git diff --git a/gl/bank_transfer.php b/gl/bank_transfer.php index 6deb5fe2..d08952e2 100644 --- a/gl/bank_transfer.php +++ b/gl/bank_transfer.php @@ -87,7 +87,7 @@ function gl_payment_controls() amount_row(_("Amount:"), 'amount', null, null, $from_currency); amount_row(_("Bank Charge:"), 'charge', null, null, $from_currency); - amount_row("Incomming Amount:", 'target_amount', null, '', $to_currency, 2); + amount_row(_("Incoming Amount:"), 'target_amount', null, '', $to_currency, 2); } else { @@ -139,7 +139,7 @@ function check_valid_entries() $amnt_tr = input_num('charge') + input_num('amount'); - if ($limit != null && floatcmp($limit, $amnt_tr) < 0) + if ($limit !== null && floatcmp($limit, $amnt_tr) < 0) { display_error(sprintf(_("The total bank amount exceeds allowed limit (%s) for source account."), price_format($limit))); set_focus('amount');