Skip to content
Snippets Groups Projects
Commit e6c89a78 authored by Matt Petro's avatar Matt Petro
Browse files

UWMOODLE-306 block course_overview_uwmoodle: Minor html fix

parent fda65f0d
No related branches found
No related tags found
No related merge requests found
...@@ -123,7 +123,7 @@ class block_course_overview_uwmoodle_renderer extends plugin_renderer_base { ...@@ -123,7 +123,7 @@ class block_course_overview_uwmoodle_renderer extends plugin_renderer_base {
$html .= html_writer::start_tag('div', array('class' => 'courselistcontainer')); $html .= html_writer::start_tag('div', array('class' => 'courselistcontainer'));
if (empty($courses)) { if (empty($courses)) {
$html .= $this->output->box_start('coursebox'); $html .= $this->output->box_start('coursebox');
$html .= $this->output->heading(get_string('nocourses','block_course_overview_uwmoodle'), 3); $html .= $this->output->box(get_string('nocourses','block_course_overview_uwmoodle'), 'notify');
$html .= $this->output->box_end(); $html .= $this->output->box_end();
} else { } else {
foreach ($courses as $key => $course) { foreach ($courses as $key => $course) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment