mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:38 +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'],
|
'email' => $contact['email'] ? $contact['email'] : $contact['email_home'],
|
||||||
'rights' => EGW_ACL_READ_FOR_PARTICIPANTS,
|
'rights' => EGW_ACL_READ_FOR_PARTICIPANTS,
|
||||||
'name' => $this->link_title($contact),
|
'name' => $this->link_title($contact),
|
||||||
|
'cn' => trim($contact['n_given'].' '.$contact['n_family']),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
//echo "<p>calendar_info(".print_r($ids,true).")="; _debug_array($data);
|
//echo "<p>calendar_info(".print_r($ids,true).")="; _debug_array($data);
|
||||||
|
@ -219,7 +219,7 @@
|
|||||||
break;
|
break;
|
||||||
};
|
};
|
||||||
$parameters['ATTENDEE'][] = array(
|
$parameters['ATTENDEE'][] = array(
|
||||||
'CN' => $info['name'],
|
'CN' => $info['cn'] ? $info['cn'] : $info['name'],
|
||||||
'ROLE' => $role,
|
'ROLE' => $role,
|
||||||
'PARTSTAT' => $status,
|
'PARTSTAT' => $status,
|
||||||
'CUTYPE' => $cutype,
|
'CUTYPE' => $cutype,
|
||||||
|
Loading…
Reference in New Issue
Block a user