Fix missing login in tooltip
This commit is contained in:
parent
18e7a5efa9
commit
d1ef4bdbd1
@ -2185,6 +2185,9 @@ class Adherent extends CommonObject
|
|||||||
if (!empty($this->ref)) {
|
if (!empty($this->ref)) {
|
||||||
$label .= '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
|
$label .= '<br><b>'.$langs->trans('Ref').':</b> '.$this->ref;
|
||||||
}
|
}
|
||||||
|
if (!empty($this->login)) {
|
||||||
|
$label .= '<br><b>'.$langs->trans('Login').':</b> '.$this->login;
|
||||||
|
}
|
||||||
if (!empty($this->firstname) || !empty($this->lastname)) {
|
if (!empty($this->firstname) || !empty($this->lastname)) {
|
||||||
$label .= '<br><b>'.$langs->trans('Name').':</b> '.$this->getFullName($langs);
|
$label .= '<br><b>'.$langs->trans('Name').':</b> '.$this->getFullName($langs);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user