fixed version and a small bug
This commit is contained in:
parent
694b705bb9
commit
17d686e1ce
@ -2,7 +2,7 @@
|
|||||||
<!DOCTYPE plugin SYSTEM "manifest.dtd">
|
<!DOCTYPE plugin SYSTEM "manifest.dtd">
|
||||||
<plugin version="2">
|
<plugin version="2">
|
||||||
<info>
|
<info>
|
||||||
<version>2.0.2</version>
|
<version>2.0.3</version>
|
||||||
<name>contactimporter</name>
|
<name>contactimporter</name>
|
||||||
<title>VCF Contact Importer/Exporter</title>
|
<title>VCF Contact Importer/Exporter</title>
|
||||||
<author>Christoph Haas</author>
|
<author>Christoph Haas</author>
|
||||||
|
@ -875,6 +875,9 @@ class ContactModule extends Module
|
|||||||
if (isset($vCard->department)) {
|
if (isset($vCard->department)) {
|
||||||
$properties["department_name"] = $vCard->department;
|
$properties["department_name"] = $vCard->department;
|
||||||
}
|
}
|
||||||
|
if (isset($vCard->officelocation)) {
|
||||||
|
$properties["office_location"] = $vCard->officelocation;
|
||||||
|
}
|
||||||
if (isset($vCard->title)) {
|
if (isset($vCard->title)) {
|
||||||
$properties["title"] = $vCard->title;
|
$properties["title"] = $vCard->title;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user