diff options
author | zotlabs <mike@macgirvin.com> | 2019-06-19 21:41:46 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2019-06-19 21:41:46 -0700 |
commit | c1cc76119cf055c50045af24df07040fa32d2bf6 (patch) | |
tree | bdde9ace13a7dca347ee2deb7732f8b276cc8c8e /Zotlabs/Module/Events.php | |
parent | 9d156141b1205e48bbb3008f2a3040caa4c33192 (diff) | |
download | volse-hubzilla-c1cc76119cf055c50045af24df07040fa32d2bf6.tar.gz volse-hubzilla-c1cc76119cf055c50045af24df07040fa32d2bf6.tar.bz2 volse-hubzilla-c1cc76119cf055c50045af24df07040fa32d2bf6.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
Diffstat (limited to 'Zotlabs/Module/Events.php')
-rw-r--r-- | Zotlabs/Module/Events.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Zotlabs/Module/Events.php b/Zotlabs/Module/Events.php index e883db49f..056d0cd5a 100644 --- a/Zotlabs/Module/Events.php +++ b/Zotlabs/Module/Events.php @@ -662,9 +662,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"' ); |