From 69065bfd109b427104fcdf18919635681b27241d Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Sun, 16 Jun 2013 12:15:38 +0200 Subject: [PATCH] cal: added TODO note to CSV export --- cal/cal.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cal/cal.php b/cal/cal.php index 461cb020..597e5323 100644 --- a/cal/cal.php +++ b/cal/cal.php @@ -88,6 +88,8 @@ function cal_format_output ($r, $f, $tz) header("Content-type: text/csv"); $o = '"Subject", "Start Date", "Start Time", "Description", "End Date", "End Time", "Location"' . PHP_EOL; foreach ($r as $rr) { +// TODO the time / date entries don't include any information about the +// timezone the event is scheduled in :-/ $tmp1 = strtotime($rr['start']); $tmp2 = strtotime($rr['finish']); $time_format = "%H:%M:%S";