diff --git a/htdocs/societe/list.php b/htdocs/societe/list.php
index 402e85d9b39..5b5e9685628 100644
--- a/htdocs/societe/list.php
+++ b/htdocs/societe/list.php
@@ -1259,7 +1259,7 @@ while ($i < min($num, $limit))
if (!empty($arrayfields['s.fk_prospectlevel']['checked']))
{
// Prospect level
- print '
';
+ print ' | ';
print $companystatic->getLibProspLevel();
print " | ";
if (!$i) $totalarray['nbfield']++;
@@ -1283,7 +1283,7 @@ while ($i < min($num, $limit))
// Parent company
if (!empty($arrayfields['s2.nom']['checked']))
{
- print '';
+ print ' | ';
if ($companystatic->fk_parent > 0)
{
$companyparent->fetch($companystatic->fk_parent);
|