MDL-10353, adding couse variable to nav bar in calendar preferences

This commit is contained in:
toyomoyo 2007-10-15 04:46:31 +00:00
parent 9458576640
commit 9ba76792ca
3 changed files with 14 additions and 3 deletions

View file

@ -514,7 +514,11 @@ function calendar_print_event($event) {
echo '</td></tr>';
echo '<tr><td class="side">&nbsp;</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">';