diff --git a/htdocs/accountancy/customer/list.php b/htdocs/accountancy/customer/list.php
index 9e4f73d8f7a..ec872726012 100644
--- a/htdocs/accountancy/customer/list.php
+++ b/htdocs/accountancy/customer/list.php
@@ -566,8 +566,8 @@ if ($result) {
print '
'.$objp->tva_intra.' | ';
- // Current account
- print '';
+ // Found accounts
+ print ' | ';
$s = ''.(($objp->type_l == 1) ? $langs->trans("DefaultForService") : $langs->trans("DefaultForProduct")).': ';
$shelp = '';
if ($suggestedaccountingaccountbydefaultfor == 'eec') $shelp .= $langs->trans("SaleEEC");
diff --git a/htdocs/accountancy/supplier/list.php b/htdocs/accountancy/supplier/list.php
index b6c220c347a..a747985096e 100644
--- a/htdocs/accountancy/supplier/list.php
+++ b/htdocs/accountancy/supplier/list.php
@@ -548,7 +548,7 @@ if ($result) {
// VAT Num
print ' | '.$objp->tva_intra.' | ';
- // Current account
+ // Found accounts
print '';
$s = ''.(($objp->type_l == 1) ? $langs->trans("DefaultForService") : $langs->trans("DefaultForProduct")).': ';
$shelp = '';
|