diff --git a/htdocs/societe/list.php b/htdocs/societe/list.php
index 714f376eb2d..2553179acb8 100644
--- a/htdocs/societe/list.php
+++ b/htdocs/societe/list.php
@@ -1287,7 +1287,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']++;
@@ -1311,7 +1311,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);
|