diff --git a/manifest.xml b/manifest.xml index 3790c6d..fa70ae3 100644 --- a/manifest.xml +++ b/manifest.xml @@ -2,7 +2,7 @@ - 2.0.2 + 2.0.3 contactimporter VCF Contact Importer/Exporter Christoph Haas diff --git a/php/module.contact.php b/php/module.contact.php index 0699f53..6964af6 100644 --- a/php/module.contact.php +++ b/php/module.contact.php @@ -875,6 +875,9 @@ class ContactModule extends Module if (isset($vCard->department)) { $properties["department_name"] = $vCard->department; } + if (isset($vCard->officelocation)) { + $properties["office_location"] = $vCard->officelocation; + } if (isset($vCard->title)) { $properties["title"] = $vCard->title; }