diff --git a/core/module/user/user.php b/core/module/user/user.php index 5f587e52..f75937e5 100644 --- a/core/module/user/user.php +++ b/core/module/user/user.php @@ -525,7 +525,7 @@ class user extends common // Formatage de la liste self::$users[] = [ $userId, - $this->getData(['user', $userId, 'firstname']) . ' ' . $userLastNames, + sprintf('%s %s',$userLastNames, $this->getData(['user', $userId, 'firstname'])), helper::translate(self::$groups[(int) $this->getData(['user', $userId, 'group'])]), empty($this->getData(['profil', $this->getData(['user', $userId, 'group']), $this->getData(['user', $userId, 'profil']), 'name'])) ? helper::translate(self::$groups[(int) $this->getData(['user', $userId, 'group'])])