March 8, 2013 at 10:02 /
Not easy. In /lib/functions/both.php around line 550
there are the lines
1 2 3 4 5 6 7 |
echo '<th class="calendar-header-cell">'.$day_names[0].'</th>'; echo '<th class="calendar-header-cell">'.$day_names[1].'</th>'; echo '<th class="calendar-header-cell">'.$day_names[2].'</th>'; echo '<th class="calendar-header-cell">'.$day_names[3].'</th>'; echo '<th class="calendar-header-cell">'.$day_names[4].'</th>'; echo '<th class="calendar-header-cell">'.$day_names[5].'</th>'; echo '<th class="calendar-header-cell">'.$day_names[6].'</th>'; |
You have to change the [0] to 6 and then 0-5 for the other ones.
Then there is this line once for each day with another line in between:
1 |
if($setet==0 && $diff==1 && $dayindex != "1"){ |
In them you need to change the number after $dayindex. The first needs the 7 and the others 1-6.
Regards