]> git.mxchange.org Git - friendica-addons.git/commitdiff
cal: added TODO note to CSV export
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 16 Jun 2013 10:15:38 +0000 (12:15 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 16 Jun 2013 10:15:38 +0000 (12:15 +0200)
cal/cal.php

index 461cb02083ca816e6279c40500d87c654b4cc09d..597e532311d28599dd6fe0a26cc8576c557eb35b 100644 (file)
@@ -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";