mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-12-21 06:02:23 +03:00
Fix the str_contains php error
This commit is contained in:
parent
a0361e2a10
commit
855c94f26d
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ class Caldav extends EA_Controller
|
||||||
// Sync each appointment with CalDAV Calendar by following the project's sync protocol (see documentation).
|
// Sync each appointment with CalDAV Calendar by following the project's sync protocol (see documentation).
|
||||||
|
|
||||||
foreach ($local_events as $local_event) {
|
foreach ($local_events as $local_event) {
|
||||||
if (str_contains($local_event['id_caldav_calendar'], 'RECURRENCE')) {
|
if (str_contains((string) $local_event['id_caldav_calendar'], 'RECURRENCE')) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue