diff --git a/htdocs/contact/class/contact.class.php b/htdocs/contact/class/contact.class.php index 2feb3f73b05..33c00af16a2 100644 --- a/htdocs/contact/class/contact.class.php +++ b/htdocs/contact/class/contact.class.php @@ -915,7 +915,7 @@ class Contact extends CommonObject $label.= '
' . $langs->trans("Name") . ': '.$this->getFullName($langs); //if ($this->civility_id) $label.= '
' . $langs->trans("Civility") . ': '.$this->civility_id; // TODO Translate cibilty_id code if (! empty($this->poste)) $label.= '
' . $langs->trans("Poste") . ': '.$this->poste; - if (! empty($this->email)) $label.= '
' . $langs->trans("EMail") . ': '.$this->email; + $label.= '
' . $langs->trans("EMail") . ': '.$this->email; $phonelist=array(); if ($this->phone_pro) $phonelist[]=$this->phone_pro; if ($this->phone_mobile) $phonelist[]=$this->phone_mobile;