]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-10084 Styling/branding
authordwoolhead <dwoolhead>
Thu, 28 Jun 2007 14:08:08 +0000 (14:08 +0000)
committerdwoolhead <dwoolhead>
Thu, 28 Jun 2007 14:08:08 +0000 (14:08 +0000)
calendar/lib.php

index 06c5d431953ed42ca34486d3f98b029e835db016..a4571c9e7b7daa9c0c30374d5cdfa646b10a9e4e 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 class="day">&nbsp;</td>'."\n";
+        $content .= '<td class="dayblank">&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 class="day">&nbsp;</td>';
+        $content .= '<td class="dayblank">&nbsp;</td>';
     }
     $content .= '</tr>'; // Last row ends