mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 18:06:51 +02:00
MDL-44745 Assign: Fix typo in assign->fullname function
This is a new function on master only.
This commit is contained in:
parent
d63e7470a9
commit
4309255896
1 changed files with 1 additions and 1 deletions
|
@ -3233,7 +3233,7 @@ class assign {
|
|||
*/
|
||||
public function fullname($user) {
|
||||
if ($this->is_blind_marking()) {
|
||||
$uniqueid = $this->get_uniqueid_for_user($userid);
|
||||
$uniqueid = $this->get_uniqueid_for_user($user->id);
|
||||
return get_string('participant', 'assign') . ' ' . $uniqueid;
|
||||
} else {
|
||||
return fullname($user);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue