-
Bug
-
Resolution: Fixed
-
Minor
-
2.6.4, 2.7.1
-
MOODLE_26_STABLE, MOODLE_27_STABLE
-
MOODLE_26_STABLE, MOODLE_27_STABLE
-
mdl-46427-master
-
Hello.
The course list on user profiles, adds the wrong class to link elements. When printing the class in a dimmed course, the link class is formed incorrectly...
<a class="class="dimmed"" .......
|
This is because the class is incorrectly set on the profile page...
user/profile.php on line 383 |
$class = 'class="dimmed"';
|
..and then when printing the hyperlink (line 391), it is assigned wrongly...
$courselisting .= html_writer::link($url, $ccontext->get_context_name(false), array('class' => $class));
|
- is a regression caused by
-
MDL-10115 A use profile's course list is arbitarily limited with no way of seeing complete list
-
- Closed
-