diff --git a/htdocs/compta/bank/list.php b/htdocs/compta/bank/list.php
index 9375cf8aaa1..a07fa968db1 100644
--- a/htdocs/compta/bank/list.php
+++ b/htdocs/compta/bank/list.php
@@ -535,7 +535,7 @@ foreach ($accounts as $key => $type) {
// Account type
if (!empty($arrayfields['accountype']['checked'])) {
- print '
';
+ print ' | ';
print $objecttmp->type_lib[$objecttmp->type];
print ' | ';
if (!$i) {
@@ -553,13 +553,15 @@ foreach ($accounts as $key => $type) {
// Account number
if (!empty($arrayfields['b.account_number']['checked'])) {
- print '';
+ print ' | ';
if (!empty($conf->accounting->enabled) && !empty($objecttmp->account_number)) {
$accountingaccount = new AccountingAccount($db);
$accountingaccount->fetch('', $objecttmp->account_number, 1);
- print $accountingaccount->getNomUrl(0, 1, 1, '', 1);
+ print '';
+ print $accountingaccount->getNomUrl(0, 1, 1, '', 0);
+ print '';
} else {
- print $objecttmp->account_number;
+ print ''.$objecttmp->account_number.'';
}
print ' | ';
if (!$i) {