diff --git a/htdocs/fourn/facture/list.php b/htdocs/fourn/facture/list.php
index 9f06c56b9e1..22b9767d13c 100644
--- a/htdocs/fourn/facture/list.php
+++ b/htdocs/fourn/facture/list.php
@@ -1484,7 +1484,7 @@ if ($num > 0) {
// Third party
if (!empty($arrayfields['s.nom']['checked'])) {
- print '
';
+ print ' | ';
print $thirdparty->getNomUrl(1, 'supplier', 0, 0, -1, empty($arrayfields['s.name_alias']['checked']) ? 0 : 1);
print ' | ';
if (!$i) {
@@ -1493,7 +1493,7 @@ if ($num > 0) {
}
// Alias
if (!empty($arrayfields['s.name_alias']['checked'])) {
- print '';
+ print ' | ';
print $thirdparty->name_alias;
print ' | ';
if (!$i) {
@@ -1639,7 +1639,7 @@ if ($num > 0) {
// Author
if (!empty($arrayfields['u.login']['checked'])) {
- print '';
+ print ' | ';
if ($userstatic->id) {
print $userstatic->getLoginUrl(-1);
} else {
|