mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +02:00
MDL-10353, adding couse variable to nav bar in calendar preferences
This commit is contained in:
parent
9458576640
commit
9ba76792ca
3 changed files with 14 additions and 3 deletions
|
@ -514,7 +514,11 @@ function calendar_print_event($event) {
|
|||
|
||||
echo '</td></tr>';
|
||||
echo '<tr><td class="side"> </td>';
|
||||
echo '<td class="description '.$event->cssclass.'">';
|
||||
if (isset($event->cssclass)) {
|
||||
echo '<td class="description '.$event->cssclass.'">';
|
||||
} else {
|
||||
echo '<td class="description">';
|
||||
}
|
||||
echo format_text($event->description, FORMAT_HTML);
|
||||
if (calendar_edit_event_allowed($event)) {
|
||||
echo '<div class="commands">';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue