diff --git a/htdocs/societe/list.php b/htdocs/societe/list.php
index bdc0fae08e0..80b0142a572 100644
--- a/htdocs/societe/list.php
+++ b/htdocs/societe/list.php
@@ -1466,7 +1466,7 @@ while ($i < min($num, $limit)) {
}
// Address
if (!empty($arrayfields['s.address']['checked'])) {
- print '
'.dol_escape_htmltag($obj->address).' | ';
+ print ''.dol_escape_htmltag($obj->address).' | ';
if (!$i) {
$totalarray['nbfield']++;
}
@@ -1673,7 +1673,7 @@ while ($i < min($num, $limit)) {
print $hookmanager->resPrint;
// Date creation
if (!empty($arrayfields['s.datec']['checked'])) {
- print '';
+ print ' | ';
print dol_print_date($db->jdate($obj->date_creation), 'dayhour', 'tzuser');
print ' | ';
if (!$i) {
@@ -1682,7 +1682,7 @@ while ($i < min($num, $limit)) {
}
// Date modification
if (!empty($arrayfields['s.tms']['checked'])) {
- print '';
+ print ' | ';
print dol_print_date($db->jdate($obj->date_update), 'dayhour', 'tzuser');
print ' | ';
if (!$i) {
@@ -1691,7 +1691,7 @@ while ($i < min($num, $limit)) {
}
// Status
if (!empty($arrayfields['s.status']['checked'])) {
- print ''.$companystatic->getLibStatut(5).' | ';
+ print ''.$companystatic->getLibStatut(5).' | ';
if (!$i) {
$totalarray['nbfield']++;
}