From c65cd4fbf44ce0702a6f4df54d49b650d5b56c0c Mon Sep 17 00:00:00 2001 From: Brian Miyaji Date: Thu, 14 May 2015 15:25:10 +1000 Subject: [PATCH] Use proper date format for timezone offset --- feeds/ical.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feeds/ical.php b/feeds/ical.php index a2e09ec1..33007bd9 100644 --- a/feeds/ical.php +++ b/feeds/ical.php @@ -49,7 +49,7 @@ $output = foreach ( $events as $event): // Define date format - $date_format = 'Ymd\THis\Z'; + $date_format = 'Ymd\THis'; // Initialize end time $end = new DateTime( $event->post_date );