Merge branch 'MDL-70995-311' of https://github.com/paulholden/moodle into MOODLE_311_STABLE

This commit is contained in:
Jun Pataleta
2021-03-03 15:05:26 +08:00
+1 -1
View File
@@ -224,7 +224,7 @@ class participants_filter implements renderable, templatable {
array_map(function($group) {
return (object) [
'value' => $group->id,
'title' => $group->name,
'title' => format_string($group->name, true, ['context' => $this->context]),
];
}, array_values($groups))
);