mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-20 21:08:54 +01:00
Fix n_fn update issue
This commit is contained in:
parent
19081734cd
commit
1e47770279
@ -1258,9 +1258,9 @@ class addressbook_ui extends addressbook_bo
|
|||||||
{
|
{
|
||||||
$old_org_entry = $this->read($content['id']);
|
$old_org_entry = $this->read($content['id']);
|
||||||
}
|
}
|
||||||
if (isset($contact['n_family']) && isset($contact['n_given'])
|
if (isset($content['n_family']) && isset($content['n_given'])
|
||||||
&& $contact['n_family'] != $old_org_entry['n_family']
|
&& $content['n_family'] != $old_org_entry['n_family']
|
||||||
&& $contact['n_given'] != $old_org_entry['n_given'])
|
&& $content['n_given'] != $old_org_entry['n_given'])
|
||||||
{
|
{
|
||||||
unset($content['n_fn']);
|
unset($content['n_fn']);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user