From 17d686e1ce2d62bf4c82567ffcbe8a74c4fd7d30 Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Mon, 27 Feb 2017 23:16:14 +0100 Subject: [PATCH] fixed version and a small bug --- manifest.xml | 2 +- php/module.contact.php | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) 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; }