Fix for bug #2042 - scheduled items do not show up in the week view.

This commit is contained in:
paul 2006-11-28 16:34:43 +00:00
parent d77fcf6c5e
commit ded597dba6
1 changed files with 1 additions and 1 deletions

View File

@ -381,7 +381,7 @@ class uiScheduler extends uiCalendar {
foreach ($arr as $key => $val) {
$id = $this->Base->gb->idFromGunid($val['playlistId']);
$startDay = strftime('%d', uiScheduler::datetimeToTimestamp($val['start']));
$startHour2 = number_format(strftime('%H', uiScheduler::datetimeToTimestamp($val['start'])));
$startHour = number_format(strftime('%H', uiScheduler::datetimeToTimestamp($val['start'])));
$items[$startDay][$startHour][]= array (
'id' => $id,
'scheduleid'=> $val['id'],