- Issue created by @deneus18
When using php8.2, the /notification page does not display notification properly.
The event enrollement notification looks like
admin has enrolled to the event <a href="/node/6" hreflang="en">new event for admin to enroll</a> you are organizing
instead of
admin has enrolled to the event new event for admin to enroll you are organizing
Use php 8.2
Use social distribution 13.0.0-alpha21
Follow the behat test" Scenario: Event manager gets a notification for an event enrollment " to see the notification
Update
$variables['content']['field_activity_output_text'][0]['#text'] = strip_tags($variables['content']['field_activity_output_text'][0]['#text']);
To
$variables['content']['field_activity_output_text'][0]['#text'] = strip_tags(html_entity_decode($variables['content']['field_activity_output_text'][0]['#text']));
Active
2.6
Code