explicitly specify fullname for newly-created vcards
SquirrelMail doesn't do it for us
This commit is contained in:
parent
94bf6c6fad
commit
7ed37c069b
1 changed files with 1 additions and 1 deletions
2
abook_class.php
Executable file → Normal file
2
abook_class.php
Executable file → Normal file
|
@ -189,7 +189,7 @@ class abook_carddav extends addressbook_backend {
|
|||
*/
|
||||
try {
|
||||
$vcard = new VCard([
|
||||
'FN' => $userdata['name'],
|
||||
'FN' => $userdata['firstname'] . ' ' . $userdata['lastname'],
|
||||
'N' => [$userdata['lastname'], $userdata['firstname'], '', '', ''],
|
||||
'EMAIL' => $userdata['email'],
|
||||
'ORG' => $userdata['label'],
|
||||
|
|
Loading…
Reference in a new issue