Could not wait for ryan to fix this since this was really important.
got to fix it myself. edit plugin php file, find the following lines:
if(get_settings('start_of_week') != 1) {
for($i = 0; $i < $strt_day; $i++) {
$cal_output .= "
<td class=\"event-list-cal-blank\">?</td>\r";
$k++;
}
} else {
for($i = 1; $i < $strt_day; $i++) {
$cal_output .= "
<td class=\"event-list-cal-blank\">?</td>\r";
$k++;
}
}
Occurs three times in the code. In each place, put this instruction before the for loop in the else clause:
if ($strt_day < 1)
$strt_day = 7;
Worked for me, hope helps someone else. Ryan, please review and fix this.