// Paddding (the first week may have blank days in the beginning)
for($i = $display->minwday; $i < $startwday; ++$i) {
- $content .= '<td> </td>'."\n";
+ $content .= '<td class="day"> </td>'."\n";
}
// Now display all the calendar
// Paddding (the last week may have blank days at the end)
for($i = $dayweek; $i <= $display->maxwday; ++$i) {
- $content .= '<td> </td>';
+ $content .= '<td class="day"> </td>';
}
$content .= '</tr>'; // Last row ends