- πΊπΈUnited States dianacastillo Miami
tested this patch and it works , fixes a big bug
If an event of a type that can reference a meeting, but the event does not have one, WSOD occurs.
Given event type meeting_calendar_event with an entity_reference type field field_meeting (referencing a live_meeting content type in my example). This field_meeting is not required.
Create a meeting_calendar_event, but do not provide a reference.
Attempt to view the new event (wsod)
opigno_calendar_event.module, in template_preprocess_opigno_calendar_event, line 267 checks for "empty", but there is always a non-empty in the reference field. Using $event->field_meeting->isEmpty() works here.
submit patch.
n/a
n/a
n/a
Needs review
3.1
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
tested this patch and it works , fixes a big bug