Merge branch 'MDL-62605-master' of https://github.com/lucaboesch/moodle

This commit is contained in:
Jun Pataleta 2018-06-05 14:54:21 +08:00 committed by Eloy Lafuente (stronk7)
commit dce622fba9

View File

@ -367,7 +367,7 @@ class participants_table extends \table_sql {
$canreviewenrol = has_capability('moodle/course:enrolreview', $this->context);
if ($canreviewenrol) {
$fullname = fullname($data);
$coursename = $this->course->fullname;
$coursename = format_string($this->course->fullname, true, array('context' => $this->context));
require_once($CFG->dirroot . '/enrol/locallib.php');
$manager = new \course_enrolment_manager($PAGE, $this->course);
$userenrolments = $manager->get_user_enrolments($data->id);