From: Tobias Diekershoff Date: Sun, 16 Jun 2013 10:15:38 +0000 (+0200) Subject: cal: added TODO note to CSV export X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=69065bfd109b427104fcdf18919635681b27241d;p=friendica-addons.git cal: added TODO note to CSV export --- 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";