]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-10084 Styling/branding
authordwoolhead <dwoolhead>
Wed, 27 Jun 2007 11:45:37 +0000 (11:45 +0000)
committerdwoolhead <dwoolhead>
Wed, 27 Jun 2007 11:45:37 +0000 (11:45 +0000)
calendar/lib.php

index 867b966d7adebf79fe382ecee514c0f02b40855f..84aa030a94696ab4cbfeac49713e27d187f4a7a8 100644 (file)
@@ -202,7 +202,7 @@ function calendar_get_mini($courses, $groups, $users, $cal_month = false, $cal_y
 
     // Paddding (the first week may have blank days in the beginning)
     for($i = $display->minwday; $i < $startwday; ++$i) {
-        $content .= '<td>&nbsp;</td>'."\n";
+        $content .= '<td class="day">&nbsp;</td>'."\n";
     }
 
     // Now display all the calendar
@@ -332,7 +332,7 @@ function calendar_get_mini($courses, $groups, $users, $cal_month = false, $cal_y
 
     // Paddding (the last week may have blank days at the end)
     for($i = $dayweek; $i <= $display->maxwday; ++$i) {
-        $content .= '<td>&nbsp;</td>';
+        $content .= '<td class="day">&nbsp;</td>';
     }
     $content .= '</tr>'; // Last row ends