Skip to content
Snippets Groups Projects
Commit 5e9f92e5 authored by Bart Visscher's avatar Bart Visscher Committed by Jörn Friedrich Dreyer
Browse files

Calendar: remove double html encoding

parent 646bc1fc
No related branches found
No related tags found
No related merge requests found
......@@ -383,8 +383,8 @@ class OC_Calendar_App{
$lastmodified = ($last_modified)?$last_modified->getDateTime()->format('U'):0;
$output = array('id'=>(int)$event['id'],
'title' => htmlspecialchars(($event['summary']!=NULL || $event['summary'] != '')?$event['summary']: self::$l10n->t('unnamed')),
'description' => isset($vevent->DESCRIPTION)?htmlspecialchars($vevent->DESCRIPTION->value):'',
'title' => ($event['summary']!=NULL || $event['summary'] != '')?$event['summary']: self::$l10n->t('unnamed'),
'description' => isset($vevent->DESCRIPTION)?$vevent->DESCRIPTION->value:'',
'lastmodified'=>$lastmodified);
$dtstart = $vevent->DTSTART;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment