Skip to content

Commit

Permalink
MDL-24333 - fixed invalidate xhtml strict for courses in combo list.
Browse files Browse the repository at this point in the history
  • Loading branch information
rwijaya committed Sep 23, 2010
1 parent 3188b27 commit 1e6c1f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion course/renderer.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ protected function course_category_tree_category(stdClass $category, $depth=1) {
$coursecount ++;
$classes[] = ($coursecount%2)?'odd':'even';
$content .= html_writer::start_tag('div', array('class'=>join(' ', $classes)));
$content .= html_writer::link(new moodle_url('/course/view.php', array('id'=>$course->id)), format_text($course->fullname), array('class'=>$linkclass));
$content .= html_writer::link(new moodle_url('/course/view.php', array('id'=>$course->id)), format_text($course->fullname, FORMAT_HTML), array('class'=>$linkclass));
$content .= html_writer::start_tag('div', array('class'=>'course_info clearfix'));

// print enrol info
Expand Down

0 comments on commit 1e6c1f7

Please sign in to comment.