mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-14 18:08:21 +01:00
Merge calendar events into user account if there is one over user contact
This commit is contained in:
parent
66738e21c3
commit
fdb47ab168
@ -1929,7 +1929,7 @@ class Contacts extends Contacts\Storage
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Update calendar
|
// Update calendar
|
||||||
$this->merge_calendar($contact['id'], $target['id']);
|
$this->merge_calendar('c'.$contact['id'], $target['account_id'] ? 'u'.$target['account_id'] : 'c'.$target['id']);
|
||||||
|
|
||||||
if ($this->delete($contact['id'])) $success++;
|
if ($this->delete($contact['id'])) $success++;
|
||||||
}
|
}
|
||||||
@ -1952,12 +1952,12 @@ class Contacts extends Contacts\Storage
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Find all events with this contact
|
// Find all events with this contact
|
||||||
$events = $bo->search(array('users' => "c$old_id", 'ignore_acl' => true));
|
$events = $bo->search(array('users' => $old_id, 'ignore_acl' => true));
|
||||||
|
|
||||||
foreach($events as $event)
|
foreach($events as $event)
|
||||||
{
|
{
|
||||||
$event['participants']["c$new_id"] = $event['participants']["c$old_id"];
|
$event['participants'][$new_id] = $event['participants'][$old_id];
|
||||||
unset($event['participants']["c$old_id"]);
|
unset($event['participants'][$old_id]);
|
||||||
|
|
||||||
// Quietly update, ignoring ACL & no notifications
|
// Quietly update, ignoring ACL & no notifications
|
||||||
$bo->update($event, true, true, true, true, $messages, true);
|
$bo->update($event, true, true, true, true, $messages, true);
|
||||||
|
Loading…
Reference in New Issue
Block a user