Calendar: Set new ID to fix missing links to CF fields on new events

This commit is contained in:
nathan 2022-03-07 10:12:58 -07:00
parent db4d0295b8
commit 0eaae8e5f1

View File

@ -1584,7 +1584,11 @@ class calendar_boupdate extends calendar_bo
// Update history
$tracking = new calendar_tracking($this);
if (empty($event['id']) && !empty($cal_id)) $event['id'] = $cal_id;
if(empty($event['id']) && !empty($cal_id))
{
$event['id'] = $cal_id;
$save_event['id'] = $cal_id;
}
// we run all dates through date2ts, to adjust to server-time and the possible date-formats
// This is done here to avoid damaging the actual event when saving, but the old event is in server-time
foreach ($timestamps as $ts)