FIX: wrong user first name/last name position in user tooltip

This commit is contained in:
AXeL-dev 2017-10-01 18:35:06 +01:00
parent 5df0f4c2fd
commit f7dcf1ca45

View File

@ -2058,7 +2058,7 @@ class User extends CommonObject
$label.= '<div class="centpercent">';
$label.= '<u>' . $langs->trans("User") . '</u><br>';
$label.= '<b>' . $langs->trans('Name') . ':</b> ' . $this->getFullName($langs,'','');
$label.= '<b>' . $langs->trans('Name') . ':</b> ' . $this->getFullName($langs,'');
if (! empty($this->login))
$label.= '<br><b>' . $langs->trans('Login') . ':</b> ' . $this->login;
$label.= '<br><b>' . $langs->trans("EMail").':</b> '.$this->email;