From: Stéphane Jacob Date: Tue, 1 Mar 2011 09:24:01 +0000 (+0100) Subject: Do not add empty job address in vcard. X-Git-Tag: core/1.1.3~7 X-Git-Url: http://git.polytechnique.org/?a=commitdiff_plain;h=feb45d1d9fc152beff746c83048ff7704cc27ea2;p=platal.git Do not add empty job address in vcard. Signed-off-by: Stéphane Jacob --- diff --git a/classes/plvcard.php b/classes/plvcard.php index e577f25..81d132c 100644 --- a/classes/plvcard.php +++ b/classes/plvcard.php @@ -702,9 +702,11 @@ class PlVCardEntry if (!is_null($role)) { $this->addInGroup($group, 'ROLE', $role); } - $field =& $this->addInGroup($group, 'ADR', - new ADR_Field($postBox, $extra, $street, $city, - $region, $postCode, $country)); + if (!is_null($street)) { + $field =& $this->addInGroup($group, 'ADR', + new ADR_Field($postBox, $extra, $street, $city, + $region, $postCode, $country)); + } $field->TYPE = new PlFlagset(); $field->TYPE->addFlag('work'); return $group;