diff --git a/htdocs/contact/fiche.php b/htdocs/contact/fiche.php index 7f69fd80748..a8350dc4eb2 100644 --- a/htdocs/contact/fiche.php +++ b/htdocs/contact/fiche.php @@ -177,20 +177,25 @@ else print '
| Nom : '.$contact->name.' '.$contact->firstname; + print ' | ||
| Nom : '.$contact->name.' '.$contact->firstname;
if ($contact->email)
print ' Email : '.$contact->email; - print ' | '; - - print 'Tel Pro : '.$contact->phone_pro; + print ' | ';
if ($contact->phone_perso)
- print ' Tel Perso : '.$contact->phone_perso; + print 'Tel Pro : '.$contact->phone_pro ." "; + + if ($contact->phone_perso) + print 'Tel Perso : '.$contact->phone_perso." "; if($contact->phone_mobile) - print ' Portable : '.$contact->phone_mobile; + print 'Portable : '.$contact->phone_mobile." "; + + if($contact->fax) + print 'Fax : '.$contact->fax." "; + print ' |