Replies: 0
There is a bug in list-table-week.php which causes an all-day event to show up on the weekly calendar incorrectly.
On line 147:
$end_cell = ( $end_day * $start_day ) + $offset;
should be
$end_cell = ( $end_day – $start_day ) + $offset;