mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
MDL-36103 tablelib: links to user profiles are wrong in courses.
This commit is contained in:
parent
b1c5155cbc
commit
2878842742
1 changed files with 12 additions and 9 deletions
|
@ -727,16 +727,19 @@ class flexible_table {
|
||||||
function col_fullname($row) {
|
function col_fullname($row) {
|
||||||
global $COURSE, $CFG;
|
global $COURSE, $CFG;
|
||||||
|
|
||||||
if (!$this->download) {
|
$name = fullname($row);
|
||||||
$profileurl = new moodle_url('/user/profile.php', array('id' => $row->{$this->useridfield}));
|
if ($this->download) {
|
||||||
if ($COURSE->id != SITEID) {
|
return $name;
|
||||||
$profileurl->param('course', $COURSE->id);
|
|
||||||
}
|
|
||||||
return html_writer::link($profileurl, fullname($row));
|
|
||||||
|
|
||||||
} else {
|
|
||||||
return fullname($row);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$userid = $row->{$this->useridfield};
|
||||||
|
if ($COURSE->id == SITEID) {
|
||||||
|
$profileurl = new moodle_url('/user/profile.php', array('id' => $userid));
|
||||||
|
} else {
|
||||||
|
$profileurl = new moodle_url('/user/view.php',
|
||||||
|
array('id' => $userid, 'course' => $COURSE->id));
|
||||||
|
}
|
||||||
|
return html_writer::link($profileurl, $name);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue