In line 277 in the snytax.php file, there is something wrong with the adding of blank fields.
Its just adding one field to much so that there is a blankfield on the whole tableend.
I just changed the loop:
// fill remaining days with blanks
if($i == $this->numDays && $wd < 7) {
while($wd<6) {
$out .= '<td class="blank"> </td>';
$wd++;
}
$out .= '</tr>';
}
In line 277 in the snytax.php file, there is something wrong with the adding of blank fields. Its just adding one field to much so that there is a blankfield on the whole tableend.
I just changed the loop:
Have a good one.