fix broken ical export

This commit is contained in:
Philip Häusler 2013-12-28 18:49:15 +01:00
parent 400dc093c6
commit 299652e070
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ function user_ical() {
$html .= "LOCATION:" . $shift['room_name'] . "\r\n"; $html .= "LOCATION:" . $shift['room_name'] . "\r\n";
$html .= "END:VEVENT\r\n"; $html .= "END:VEVENT\r\n";
} }
$html .= "END:VCALENDAR\r\n"; $html .= "END:VCALENDAR";
header("Content-Length: " . strlen($html)); header("Content-Length: " . strlen($html));
echo $html; echo $html;
die(); die();