From e68b619dfa5970fc1483559b60eee1ffb1ca3dd1 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Tue, 13 Apr 2004 14:13:32 +0000 Subject: [PATCH] Ajout la ville du bureau --- htdocs/contact.class.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/htdocs/contact.class.php b/htdocs/contact.class.php index 05b10c5b1d6..9120d2ff87f 100644 --- a/htdocs/contact.class.php +++ b/htdocs/contact.class.php @@ -136,6 +136,10 @@ class Contact $soc = new Societe($this->db); $soc->fetch($this->socid); $info["o"] = $soc->nom; + if ($soc->ville) + { + $info["l"] = $soc->ville; + } } $info["objectclass"][0] = "organizationalPerson";