Hi,
I have an error if I add several dates for the same event in timing.
ErrorException {#3063 ▼
#message: "Warning: Undefined array key "date""
#code: 0
#file: "...../vendor/openagenda/api-sdk/src/Entity/Event.php"
#line: 232
#severity: E_WARNING
trace: {▶}
}
I found a solution, in Event.php line 224, we can add:
$timing = [
'date' => isset($datas['date']) ? $datas['date'] : '',
'begin' => $datas['begin']->format('c'),
'end' => $datas['end']->format('c'),
];
Could you fix this error ?
Thanks,
Regards
Hi,
I have an error if I add several dates for the same event in timing.
I found a solution, in Event.php line 224, we can add:
Could you fix this error ?
Thanks,
Regards