Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge branch 'MDL-62656-34' of git://github.com/mihailges/moodle into…
… MOODLE_34_STABLE
  • Loading branch information
David Monllao committed Jul 3, 2018
2 parents d83f207 + 31f830c commit 41562c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion course/classes/management_renderer.php
Expand Up @@ -860,7 +860,7 @@ public function course_detail(course_in_list $course) {
protected function detail_pair($key, $value, $class ='') {
$html = html_writer::start_div('detail-pair row yui3-g '.preg_replace('#[^a-zA-Z0-9_\-]#', '-', $class));
$html .= html_writer::div(html_writer::span($key), 'pair-key span3 col-md-3 yui3-u-1-4');
$html .= html_writer::div(html_writer::span($value), 'pair-value span9 col-md-9 m-b-1 yui3-u-3-4');
$html .= html_writer::div(html_writer::span($value), 'pair-value span9 col-md-9 m-b-1 yui3-u-3-4 form-inline');
$html .= html_writer::end_div();
return $html;
}
Expand Down

0 comments on commit 41562c9

Please sign in to comment.