MDL-34543 mod_assign Fixing problem where previous feedback does not populate when you re-enter the grading view. add_plugin_grade_elements() was expecting grade object, but was being given grade string.

This commit is contained in:
Eric Merrill 2012-08-07 10:19:08 -04:00
parent 470d47f512
commit fbb70b4717

View file

@ -2983,13 +2983,13 @@ class assign {
} }
if (has_all_capabilities(array('gradereport/grader:view', 'moodle/grade:viewall'), $this->get_course_context())) { if (has_all_capabilities(array('gradereport/grader:view', 'moodle/grade:viewall'), $this->get_course_context())) {
$grade = $this->output->action_link(new moodle_url('/grade/report/grader/index.php', $gradestring = $this->output->action_link(new moodle_url('/grade/report/grader/index.php',
array('id'=>$this->get_course()->id)), array('id'=>$this->get_course()->id)),
$gradinginfo->items[0]->grades[$userid]->str_grade); $gradinginfo->items[0]->grades[$userid]->str_grade);
} else { } else {
$grade = $gradinginfo->items[0]->grades[$userid]->str_grade; $gradestring = $gradinginfo->items[0]->grades[$userid]->str_grade;
} }
$mform->addElement('static', 'finalgrade', get_string('currentgrade', 'assign').':' ,$grade); $mform->addElement('static', 'finalgrade', get_string('currentgrade', 'assign').':', $gradestring);
$mform->addElement('static', 'progress', '', get_string('gradingstudentprogress', 'assign', array('index'=>$rownum+1, 'count'=>count($useridlist)))); $mform->addElement('static', 'progress', '', get_string('gradingstudentprogress', 'assign', array('index'=>$rownum+1, 'count'=>count($useridlist))));