Added comment

This commit is contained in:
Michael 2022-02-05 16:49:21 +00:00
parent 3e51309525
commit 69d7391f90
1 changed files with 1 additions and 0 deletions

View File

@ -1433,6 +1433,7 @@ class Item
if (!empty($post['event-id'])) {
$event = DBA::selectFirst('event', ['edited', 'start', 'finish', 'summary', 'desc', 'location', 'nofinish', 'adjust'], ['id' => $item['event-id']]);
if (!empty($event)) {
// We aren't using "Event::store" here, since we don't want to trigger any further action
$ret = DBA::update('event', $event, ['id' => $post['event-id']]);
Logger::info('Event updated', ['uid' => $uid, 'source-event' => $item['event-id'], 'target-event' => $post['event-id'], 'ret' => $ret]);
}