From 0e1cf72c4385fbf154b6fd694dd941a8b911d893 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 16 May 2015 13:59:48 +0200 Subject: [PATCH] Fix bad order for firstname, lasname --- htdocs/user/class/user.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/user/class/user.class.php b/htdocs/user/class/user.class.php index ea10a04409a..280e6491f17 100644 --- a/htdocs/user/class/user.class.php +++ b/htdocs/user/class/user.class.php @@ -1795,7 +1795,7 @@ class User extends CommonObject $result.=($lien.img_object($langs->trans("ShowUser"),'user').$lienfin); if ($withpicto != 2) $result.=' '; } - $result.=$lien.$this->getFullName($langs,'','',24).$lienfin; + $result.=$lien.$this->getFullName($langs,'',-1,24).$lienfin; return $result; }