diff --git a/htdocs/product/stock/class/entrepot.class.php b/htdocs/product/stock/class/entrepot.class.php
index a165bf79038..006eb353a6c 100644
--- a/htdocs/product/stock/class/entrepot.class.php
+++ b/htdocs/product/stock/class/entrepot.class.php
@@ -706,9 +706,9 @@ class Entrepot extends CommonObject
if (isset($this->statut)) {
$datas['picto'] .= ' '.$this->getLibStatut(5);
}
- $datas['ref'] .= '
'.$langs->trans('Ref').': '.(empty($this->ref) ? $this->label : $this->ref);
+ $datas['ref'] = '
'.$langs->trans('Ref').': '.(empty($this->ref) ? $this->label : $this->ref);
if (!empty($this->lieu)) {
- $datas['locationsummary'] .= '
'.$langs->trans('LocationSummary').': '.$this->lieu;
+ $datas['locationsummary'] = '
'.$langs->trans('LocationSummary').': '.$this->lieu;
}
return $datas;