Closed (fixed)
Project:
Calendar
Version:
7.x-3.4
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 May 2013 at 10:11 UTC
Updated:
2 Feb 2014 at 17:10 UTC
Jump to comment: Most recent
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
Comment #1
hazah commentedI can confirm this exact same problem. This resolution fixed this for me as well. Thank you @Jorg.
Comment #2
zeit_geist commentedSame thing in No items are shown in 7th day in the week view
This change is fixing the problem. Thx @Jorg
Comment #3
zeit_geist commented