Do not add empty job address in vcard.
[platal.git] / classes / plvcard.php
index 071d444..81d132c 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /***************************************************************************
- *  Copyright (C) 2003-2010 Polytechnique.org                              *
+ *  Copyright (C) 2003-2011 Polytechnique.org                              *
  *  http://opensource.polytechnique.org/                                   *
  *                                                                         *
  *  This program is free software; you can redistribute it and/or modify   *
@@ -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;