fixed version and a small bug

This commit is contained in:
Christoph Haas 2017-02-27 23:16:14 +01:00
vanhempi 694b705bb9
commit 17d686e1ce
2 muutettua tiedostoa jossa 4 lisäystä ja 1 poistoa

Näytä tiedosto

@ -2,7 +2,7 @@
<!DOCTYPE plugin SYSTEM "manifest.dtd">
<plugin version="2">
<info>
<version>2.0.2</version>
<version>2.0.3</version>
<name>contactimporter</name>
<title>VCF Contact Importer/Exporter</title>
<author>Christoph Haas</author>

Näytä tiedosto

@ -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;
}