mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-22 16:03:47 +01:00
fixed moving contracts to and from private addressbook
This commit is contained in:
parent
96eaf62eda
commit
ed64e9102a
@ -639,10 +639,10 @@ class uicontacts extends bocontacts
|
||||
{
|
||||
$Ok = false;
|
||||
}
|
||||
elseif ($contact['owner'] != $action) // no need to change
|
||||
elseif ($contact['owner'] != (int)$action || $contact['private'] != (int)(substr($action,-1) == 'p'))
|
||||
{
|
||||
$contact['owner'] = (int) $action;
|
||||
$contact['private'] = 0;
|
||||
$contact['private'] = (int)(substr($action,-1) == 'p');
|
||||
$Ok = $this->save($contact);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user