From 028cbdcffa8b51a79479c0f51836149ec9052acb Mon Sep 17 00:00:00 2001 From: zotlabs Date: Thu, 20 Jun 2019 05:13:03 +0000 Subject: [PATCH] tweak to event title encoding to ensure it works with German, Russian, as well as angle chars (cherry picked from commit 952e466d9121726f00c94b6527ff01255529b82c) --- Zotlabs/Module/Channel_calendar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zotlabs/Module/Channel_calendar.php b/Zotlabs/Module/Channel_calendar.php index eb2ed230d..bb0c9f857 100644 --- a/Zotlabs/Module/Channel_calendar.php +++ b/Zotlabs/Module/Channel_calendar.php @@ -381,7 +381,7 @@ class Channel_calendar extends \Zotlabs\Web\Controller { 'end' => $end, 'drop' => $drop, 'allDay' => (($rr['adjust']) ? 0 : 1), - 'title' => $rr['summary'], + 'title' => html_entity_decode($rr['summary'],ENT_COMPAT,'UTF-8'), 'editable' => $edit ? true : false, 'item' => $rr, 'plink' => [$rr['plink'], t('Link to source')],