mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 00:12:56 +02:00
Removed about 30 un-necessary divs from the calendar block ;-)
This commit is contained in:
parent
031f8487b0
commit
05fcc5fd48
@ -233,10 +233,12 @@ function calendar_get_mini($courses, $groups, $users, $cal_month = false, $cal_y
|
||||
else if(isset($typesbyday[$day]['startuser'])) {
|
||||
$class .= ' event_user';
|
||||
}
|
||||
$cell = '<div class="day"><a href="'.$dayhref.'" '.$popup.'>'.$day.'</a></div>';
|
||||
$class .= ' day';
|
||||
$cell = '<a href="'.$dayhref.'" '.$popup.'>'.$day.'</a>';
|
||||
}
|
||||
else {
|
||||
$cell = '<div class="day">'.$day.'</div>';
|
||||
$class .= ' day';
|
||||
$cell = $day;
|
||||
}
|
||||
|
||||
if(isset($typesbyday[$day]['durationglobal'])) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user