From 77afbd44125b44391bf094d35eafbe3e93b074f5 Mon Sep 17 00:00:00 2001 From: bahfir abbes Date: Fri, 4 Sep 2020 15:57:08 +0100 Subject: [PATCH] fix : unuseful truncation of list name elements --- htdocs/core/class/extrafields.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/core/class/extrafields.class.php b/htdocs/core/class/extrafields.class.php index b2f8905aba9..993528464fd 100644 --- a/htdocs/core/class/extrafields.class.php +++ b/htdocs/core/class/extrafields.class.php @@ -1231,7 +1231,7 @@ class ExtraFields } else { if (!$notrans) { $translabel = $langs->trans($obj->{$InfoFieldList[1]}); - $labeltoshow = dol_trunc($translabel, 18); + $labeltoshow =$translabel; } if (empty($labeltoshow)) $labeltoshow = '(not defined)';