diff --git a/htdocs/product/list.php b/htdocs/product/list.php
index 47135d22a15..385187b316e 100644
--- a/htdocs/product/list.php
+++ b/htdocs/product/list.php
@@ -764,7 +764,7 @@ if ($resql)
// Sell price
if (! empty($arrayfields['p.sellprice']['checked']))
{
- print '
';
+ print ' | ';
if ($obj->tosell)
{
if ($obj->price_base_type == 'TTC') print price($obj->price_ttc).' '.$langs->trans("TTC");
@@ -777,7 +777,7 @@ if ($resql)
// Better buy price
if (! empty($arrayfields['p.minbuyprice']['checked']))
{
- print ' | ';
+ print ' | ';
if ($obj->tobuy && $obj->minsellprice != '')
{
//print price($obj->minsellprice).' '.$langs->trans("HT");
|