diff --git a/htdocs/societe/paymentmodes.php b/htdocs/societe/paymentmodes.php
index ae39569a36e..6869e80bd87 100644
--- a/htdocs/societe/paymentmodes.php
+++ b/htdocs/societe/paymentmodes.php
@@ -1480,20 +1480,22 @@ if ($socid && $action != 'edit' && $action != 'create' && $action != 'editcard'
print $string;
print '';
// IBAN
- print '
'.dol_escape_htmltag($rib->iban);
+ print ' | ';
if (!empty($rib->iban)) {
if (!checkIbanForAccount($rib)) {
- print ' '.img_picto($langs->trans("IbanNotValid"), 'warning');
+ print img_picto($langs->trans("IbanNotValid"), 'warning').' ';
}
}
+ print dol_escape_htmltag($rib->iban);
print ' | ';
// BIC
- print ''.$rib->bic;
+ print ' | ';
if (!empty($rib->bic)) {
if (!checkSwiftForAccount($rib)) {
- print ' '.img_picto($langs->trans("SwiftNotValid"), 'warning');
+ print img_picto($langs->trans("SwiftNotValid"), 'warning').' ';
}
}
+ print dol_escape_htmltag($rib->bic);
print ' | ';
if (!empty($conf->prelevement->enabled)) {