wrong display of events in day view

ulrich@muehlgasse.de ulrich@muehlgasse.de
Mon, 20 Aug 2001 01:15:15 +0200


I'm using the mysql driver and had (others do still have) a problem with events 
that do display on the whole day, but the database entry is correct. I found 
that if you change in DayView.php function parse() the following

            $start_arr = explode(':', date('G:i', $event->start_time));
            $stop_arr = explode(':', date('G:i', $event->end_time));

to
 

            $start_arr = explode(':', date('G:i', $event->startTimestamp));
            $stop_arr = explode(':', date('G:i', $event->endTimestamp));

it looks much better.
Maybe this helps.