I had the problem with a multi-day event not showing up in the weekly view. It started on a Sunday (week starts on Monday) and was only shown in the following week. I couldn't find another solution but changing the code of the template file calendar/theme/calendar-week.tpl.php:
In line 67 the for loop goes from 0 to 5:
for($j = 0; $j < 6; $j++)
but it should rather go up to 6:
for($j = 0; $j <= 6; $j++)

Or am I missing something here?

Comments

hazah’s picture

I can confirm this exact same problem. This resolution fixed this for me as well. Thank you @Jorg.

zeit_geist’s picture

Same thing in No items are shown in 7th day in the week view

This change is fixing the problem. Thx @Jorg

zeit_geist’s picture

Issue summary: View changes
Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.