diff --git a/htdocs/comm/mailing/cibles.php b/htdocs/comm/mailing/cibles.php
index 336b6431281..8cdccd9fe7e 100644
--- a/htdocs/comm/mailing/cibles.php
+++ b/htdocs/comm/mailing/cibles.php
@@ -655,21 +655,21 @@ if ($object->fetch($id) >= 0) {
print '';
// Date last update
- print '
';
+ print ' | ';
print dol_print_date($obj->tms, 'dayhour');
print ' | ';
// Status of recipient sending email (Warning != status of emailing)
if ($obj->statut == 0) {
// Date sent
- print ' | ';
+ print ' | ';
print '';
print $object::libStatutDest($obj->statut, 2, '');
print ' | ';
} else {
// Date sent
- print ''.$obj->date_envoi.' | ';
+ print ''.$obj->date_envoi.' | ';
print '';
print $object::libStatutDest($obj->statut, 2, $obj->error_text);
|