aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Events.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2019-06-20 04:41:46 +0000
committerMario <mario@mariovavti.com>2019-06-20 18:39:58 +0200
commit8aefbd911bf549fbe8ce61a51db3b2bae5d503af (patch)
treee0ddd613569030bbb5a5358e7da1fc20871e1462 /Zotlabs/Module/Events.php
parentf046a34d34b4799b45bfae859969be4d20565545 (diff)
downloadvolse-hubzilla-8aefbd911bf549fbe8ce61a51db3b2bae5d503af.tar.gz
volse-hubzilla-8aefbd911bf549fbe8ce61a51db3b2bae5d503af.tar.bz2
volse-hubzilla-8aefbd911bf549fbe8ce61a51db3b2bae5d503af.zip
events: don't use htmlentities on local (hz) event titles as they are not being used in textareas and umlauts for instance are getting mangled on the calendar display
(cherry picked from commit c1cc76119cf055c50045af24df07040fa32d2bf6)
Diffstat (limited to 'Zotlabs/Module/Events.php')
-rw-r--r--Zotlabs/Module/Events.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Module/Events.php b/Zotlabs/Module/Events.php
index dcdbfd233..681d6887d 100644
--- a/Zotlabs/Module/Events.php
+++ b/Zotlabs/Module/Events.php
@@ -668,9 +668,10 @@ class Events extends \Zotlabs\Web\Controller {
'html'=>$html,
'plink' => array($rr['plink'],t('Link to Source'),'',''),
);
+
}
}
-
+
if($export) {
header('Content-type: text/calendar');
header('content-disposition: attachment; filename="' . t('calendar') . '-' . $channel['channel_address'] . '.ics"' );