mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:07 +01:00
use a cn given+family name, instead of link title for contacts
This commit is contained in:
parent
cb9212e691
commit
9d7e48fcaa
@ -926,6 +926,7 @@ class bocontacts extends socontacts
|
||||
'email' => $contact['email'] ? $contact['email'] : $contact['email_home'],
|
||||
'rights' => EGW_ACL_READ_FOR_PARTICIPANTS,
|
||||
'name' => $this->link_title($contact),
|
||||
'cn' => trim($contact['n_given'].' '.$contact['n_family']),
|
||||
);
|
||||
}
|
||||
//echo "<p>calendar_info(".print_r($ids,true).")="; _debug_array($data);
|
||||
|
@ -219,7 +219,7 @@
|
||||
break;
|
||||
};
|
||||
$parameters['ATTENDEE'][] = array(
|
||||
'CN' => $info['name'],
|
||||
'CN' => $info['cn'] ? $info['cn'] : $info['name'],
|
||||
'ROLE' => $role,
|
||||
'PARTSTAT' => $status,
|
||||
'CUTYPE' => $cutype,
|
||||
|
Loading…
Reference in New Issue
Block a user