IBAN and BIC are always saved uppercase now
This commit is contained in:
@@ -349,8 +349,8 @@ class AddressController extends mfBaseController {
|
||||
|
||||
$data['bank_account_bank'] = trim($r->bank_account_bank);
|
||||
$data['bank_account_owner'] = trim($r->bank_account_owner);
|
||||
$data['bank_account_iban'] = trim($r->bank_account_iban);
|
||||
$data['bank_account_bic'] = trim($r->bank_account_bic);
|
||||
$data['bank_account_iban'] = strtoupper(trim($r->bank_account_iban));
|
||||
$data['bank_account_bic'] = strtoupper(trim($r->bank_account_bic));
|
||||
$data['allow_contact'] = ($r->allow_contact) ? 1 : 0;
|
||||
$data['allow_spin'] = ($r->allow_spin) ? 1 : 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user