From: Matthias Moritz Date: Fri, 2 Dec 2022 19:42:16 +0000 (+0100) Subject: Update Event.php X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8b2a3805b6afa2d6b3e5fd7a2b7b2d7a4787c782;p=friendica.git Update Event.php fixing double encoding issue in event view. fixes #12308 --- diff --git a/src/Model/Event.php b/src/Model/Event.php index 5d71dd16af..0bba1f7cd6 100644 --- a/src/Model/Event.php +++ b/src/Model/Event.php @@ -673,7 +673,7 @@ class Event $event['author-link'] = Contact::magicLink($event['author-link']); $event['summary'] = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['summary'])); - $event['desc'] = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['desc'])); + $event['desc'] = Strings::escapeHtml($event['desc']); $event['location'] = BBCode::convertForUriId($event['uri-id'], Strings::escapeHtml($event['location'])); return [