aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Channel_calendar.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2019-06-19 22:13:03 -0700
committerzotlabs <mike@macgirvin.com>2019-06-19 22:13:03 -0700
commit952e466d9121726f00c94b6527ff01255529b82c (patch)
tree0b3474cbd0c4c641615b07ec2f875d69dc789c92 /Zotlabs/Module/Channel_calendar.php
parentc1cc76119cf055c50045af24df07040fa32d2bf6 (diff)
downloadvolse-hubzilla-952e466d9121726f00c94b6527ff01255529b82c.tar.gz
volse-hubzilla-952e466d9121726f00c94b6527ff01255529b82c.tar.bz2
volse-hubzilla-952e466d9121726f00c94b6527ff01255529b82c.zip
tweak to event title encoding to ensure it works with German, Russian, as well as angle chars
Diffstat (limited to 'Zotlabs/Module/Channel_calendar.php')
-rw-r--r--Zotlabs/Module/Channel_calendar.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Channel_calendar.php b/Zotlabs/Module/Channel_calendar.php
index 9a735ffc5..cacee57ef 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')],