mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
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:
parent
470d47f512
commit
fbb70b4717
1 changed files with 3 additions and 3 deletions
|
@ -2983,13 +2983,13 @@ class assign {
|
|||
}
|
||||
|
||||
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)),
|
||||
$gradinginfo->items[0]->grades[$userid]->str_grade);
|
||||
} 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))));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue