mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 04:30:15 +01:00
Merge branch 'MDL-36223-master' of git://github.com/damyon/moodle
This commit is contained in:
commit
b6009c5ca5
@ -1130,11 +1130,11 @@ function assign_user_outline($course, $user, $coursemodule, $assignment) {
|
||||
$gradingitem = $gradinginfo->items[0];
|
||||
$gradebookgrade = $gradingitem->grades[$user->id];
|
||||
|
||||
if (!$gradebookgrade) {
|
||||
if (empty($gradebookgrade->str_long_grade)) {
|
||||
return null;
|
||||
}
|
||||
$result = new stdClass();
|
||||
$result->info = get_string('outlinegrade', 'assign', $gradebookgrade->grade);
|
||||
$result->info = get_string('outlinegrade', 'assign', $gradebookgrade->str_long_grade);
|
||||
$result->time = $gradebookgrade->dategraded;
|
||||
|
||||
return $result;
|
||||
|
Loading…
x
Reference in New Issue
Block a user