Calendar Export: replace spaces with dashes in the name of the calendar / event

master
Georg Ehrke 2012-06-28 19:04:14 +02:00
parent 034a6bf879
commit 541a9a7994
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ if(isset($cal)){
exit;
}
header('Content-Type: text/Calendar');
header('Content-Disposition: inline; filename=' . $calendar['displayname'] . '.ics');
header('Content-Disposition: inline; filename=' . str_replace(' ', '-', $calendar['displayname']) . '.ics');
echo OC_Calendar_Export::export($cal, OC_Calendar_Export::CALENDAR);
}elseif(isset($event)){
$data = OC_Calendar_App::getEventObject($_GET['eventid'], true);
@ -25,6 +25,6 @@ if(isset($cal)){
exit;
}
header('Content-Type: text/Calendar');
header('Content-Disposition: inline; filename=' . $data['summary'] . '.ics');
header('Content-Disposition: inline; filename=' . str_replace(' ', '-', $data['summary']) . '.ics');
echo OC_Calendar_Export::export($event, OC_Calendar_Export::EVENT);
}