tweak to event title encoding to ensure it works with German, Russian, as well as angle chars

This commit is contained in:
zotlabs 2019-06-19 22:13:03 -07:00
parent c1cc76119c
commit 952e466d91

View File

@ -381,7 +381,7 @@ class Channel_calendar extends \Zotlabs\Web\Controller {
'end' => $end, 'end' => $end,
'drop' => $drop, 'drop' => $drop,
'allDay' => (($rr['adjust']) ? 0 : 1), 'allDay' => (($rr['adjust']) ? 0 : 1),
'title' => $rr['summary'], 'title' => html_entity_decode($rr['summary'],ENT_COMPAT,'UTF-8'),
'editable' => $edit ? true : false, 'editable' => $edit ? true : false,
'item' => $rr, 'item' => $rr,
'plink' => [$rr['plink'], t('Link to source')], 'plink' => [$rr['plink'], t('Link to source')],