diff --git a/htdocs/contact/list.php b/htdocs/contact/list.php
index f6aedacb6bfdf..e4831263affb5 100644
--- a/htdocs/contact/list.php
+++ b/htdocs/contact/list.php
@@ -1600,7 +1600,7 @@
// EMail
if (!empty($arrayfields['p.email']['checked'])) {
- print '
';
+ print ' | ';
if ($contextpage == 'poslist') {
print $obj->email;
} else {
@@ -1640,7 +1640,7 @@
// Company / Third Party
if (!empty($arrayfields['p.fk_soc']['checked']) || !empty($arrayfields['s.nom']['checked'])) {
- print ' | ';
+ print ' | ';
if ($obj->socid) {
$objsoc = new Societe($db);
$objsoc->fetch($obj->socid);
|