From aa44514065915f1912afd1aee11821b835d2aae7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Tue, 21 Feb 2023 20:36:39 +0100 Subject: [PATCH] enhance mo tooltip --- htdocs/product/stock/class/entrepot.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;