1
0
mirror of https://github.com/moodle/moodle.git synced 2025-03-14 12:40:01 +01:00

Merge branch 'MDL-36223-master' of git://github.com/damyon/moodle

This commit is contained in:
Dan Poltawski 2013-05-07 15:28:05 +01:00
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;