1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2025-01-30 19:52:17 +01:00

fix bug #810 that imports a phone number as PHONE property, rather than a TEL proerty

This commit is contained in:
babelouest 2015-02-10 14:41:28 -05:00 committed by Thomas Müller
parent 1a37138ec3
commit 0d89ddd3fa
3 changed files with 10 additions and 10 deletions

View File

@ -162,12 +162,12 @@ author: Nicolas Mora mail@babelouest.org
</import_entry>
<import_entry name="Phone 1 - Type" enabled="true" remove="*">
<vcard_entry property="PHONE" group="phone1" value="type">
<vcard_entry property="TEL" group="phone1" value="type">
</vcard_entry>
</import_entry>
<import_entry name="Phone 1 - Value" enabled="true">
<vcard_entry property="PHONE" group="phone1">
<vcard_entry property="TEL" group="phone1">
</vcard_entry>
</import_entry>

View File

@ -115,37 +115,37 @@ author: Nicolas Mora mail@babelouest.org
</import_entry>
<import_entry name="Home" enabled="true">
<vcard_entry property="PHONE" type="HOME">
<vcard_entry property="TEL" type="HOME">
</vcard_entry>
</import_entry>
<import_entry name="Work" enabled="true">
<vcard_entry property="PHONE" type="WORK">
<vcard_entry property="TEL" type="WORK">
</vcard_entry>
</import_entry>
<import_entry name="Pager" enabled="true">
<vcard_entry property="PHONE" type="PAGER">
<vcard_entry property="TEL" type="PAGER">
</vcard_entry>
</import_entry>
<import_entry name="Fax" enabled="true">
<vcard_entry property="PHONE" type="FAX">
<vcard_entry property="TEL" type="FAX">
</vcard_entry>
</import_entry>
<import_entry name="Mobile" enabled="true">
<vcard_entry property="PHONE" type="CELL">
<vcard_entry property="TEL" type="CELL">
</vcard_entry>
</import_entry>
<import_entry name="Other" enabled="true">
<vcard_entry property="PHONE" type="OTHER">
<vcard_entry property="TEL" type="OTHER">
</vcard_entry>
</import_entry>
<import_entry name="Yahoo Phone" enabled="true">
<vcard_entry property="PHONE" type="OTHER,YAHOO">
<vcard_entry property="TEL" type="OTHER,YAHOO">
</vcard_entry>
</import_entry>

View File

@ -93,7 +93,7 @@ author: Nicolas Mora mail@babelouest.org
</import_entry>
<import_entry property="X-PRIMARY-PHONE" enabled="true">
<vcard_entry property="PHONE" type="HOME">
<vcard_entry property="TEL" type="HOME">
</vcard_entry>
</import_entry>