From a3d4340b820c1a2d7df43d7f3d14847fb1257037 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 29 Feb 2016 15:30:52 +0100 Subject: [PATCH] Fix useless truncation --- htdocs/contact/list.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/htdocs/contact/list.php b/htdocs/contact/list.php index b319072dc68..2ba0d4e4565 100644 --- a/htdocs/contact/list.php +++ b/htdocs/contact/list.php @@ -610,23 +610,23 @@ if ($result) if (! empty($arrayfields['p.lastname']['checked'])) { print ''; - print $contactstatic->getNomUrl(1,'',20); + print $contactstatic->getNomUrl(1,'',0); print ''; } // Firstname if (! empty($arrayfields['p.firstname']['checked'])) { - print ''.dol_trunc($obj->firstname,20).''; + print ''.$obj->firstname.''; } // Zip if (! empty($arrayfields['p.zip']['checked'])) { - print ''.dol_trunc($obj->zip,20).''; + print ''.$obj->zip.''; } // Town if (! empty($arrayfields['p.town']['checked'])) { - print ''.dol_trunc($obj->town,20).''; + print ''.$obj->town.''; } // Function if (! empty($arrayfields['p.poste']['checked']))