Closed (cannot reproduce)
Project:
CCK Vcard
Version:
6.x-1.7
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Reporter:
Created:
9 Jan 2012 at 19:27 UTC
Updated:
16 May 2012 at 14:06 UTC
When exporting to a VCard reader that uses the first and last name fields instead of FullName, the first and last names are reversed.
The correct VCard name format:
N:Doe;John;;;
FN:John Doe
The fix is pretty simple. In cck_vcard_create_vcard():
- $output .= 'N;CHARSET=UTF-8:'. $fname. ';'.$lname.';;';
+ $output .= 'N;CHARSET=UTF-8:'. $lname. ';'.$fname.';;';
Sources: http://www.w3.org/2002/12/cal/vcard-notes.html and http://en.wikipedia.org/wiki/VCard
Comments
Comment #1
michaelpporter commentedSeems to be fixed in the latest versions