diff --git a/htdocs/societe/notify/card.php b/htdocs/societe/notify/card.php
index a1f38f0562a..9da1d057558 100644
--- a/htdocs/societe/notify/card.php
+++ b/htdocs/societe/notify/card.php
@@ -172,7 +172,7 @@ if ($result > 0)
if ($object->client)
{
- print '
| ';
+ print ' |
| ';
print $langs->trans('CustomerCode').' | ';
print $object->code_client;
if ($object->check_codeclient() <> 0) print ' ('.$langs->trans("WrongCustomerCode").')';
@@ -181,14 +181,14 @@ if ($result > 0)
if ($object->fournisseur)
{
- print ' |
| ';
+ print ' |
| ';
print $langs->trans('SupplierCode').' | ';
print $object->code_fournisseur;
if ($object->check_codefournisseur() <> 0) print ' ('.$langs->trans("WrongSupplierCode").')';
print ' |
';
}
- print '| '.$langs->trans("NbOfActiveNotifications").' | ';
+ print '
| '.$langs->trans("NbOfActiveNotifications").' | ';
print '';
$notify=new Notify($db);
$tmparray = $notify->getNotificationsArray('', $object->id);
|