summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2013-12-28 18:49:15 +0100
committerPhilip Häusler <msquare@notrademark.de>2013-12-28 18:49:15 +0100
commit299652e070f4e44ff5e53043d02deb121561f950 (patch)
treeb802f3616014ac8420dea7580c432a604d91d4d1 /includes
parent400dc093c63afbcb80700bdec93ae063ae300876 (diff)
fix broken ical export
Diffstat (limited to 'includes')
-rw-r--r--includes/pages/user_ical.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/pages/user_ical.php b/includes/pages/user_ical.php
index d994ce31..34f01942 100644
--- a/includes/pages/user_ical.php
+++ b/includes/pages/user_ical.php
@@ -38,7 +38,7 @@ function user_ical() {
$html .= "LOCATION:" . $shift['room_name'] . "\r\n";
$html .= "END:VEVENT\r\n";
}
- $html .= "END:VCALENDAR\r\n";
+ $html .= "END:VCALENDAR";
header("Content-Length: " . strlen($html));
echo $html;
die();