Open bauigel opened 4 weeks ago
Seems there is an uninitialized array in the code which breaks the rss-feed
Around line 693
$eventData['display_dat'] .= $this->getFeedXmlForTags('category', $eventData['properties']['freetag_tags'] ?? []);
Changed it to following (thanks to ChatGPT) and it seems to work (for me)
$eventData['display_dat'] = ($eventData['display_dat'] ?? '') . $this->getFeedXmlForTags('category', $eventData['properties']['freetag_tags'] ?? []);
Seems there is an uninitialized array in the code which breaks the rss-feed
Around line 693
Changed it to following (thanks to ChatGPT) and it seems to work (for me)