Eventcalendar offsetday

If you've problems with unsupported - non official ;-) - functionalities use this forum please.
Post Reply
jockela
Posts: 3
Joined: Wed 20. Apr 2005, 01:58
Location: Sweden

Post by jockela »

I added

Code: Select all

		//Startdag Måndag
				$startday = $startday-1;
if ($startday == '-1'){
					$startday = '6';
				}
		//--------
after

Code: Select all

$startday = date("w", mktime(0,0,0,$month,1,$year));
and changed

Code: Select all

$days = array("sun","mon", "tue", "wed", "thu", "fri", "sat");   
to

Code: Select all

$days = array("mon", "tue", "wed", "thu", "fri", "sat","sun");   
in calendar.classes.php
Post Reply