This commit is contained in:
Jun Pataleta 2024-09-11 15:36:40 +08:00
commit 9162b47424
No known key found for this signature in database
GPG Key ID: F83510526D99E2C7

View File

@ -1283,6 +1283,8 @@ class grade_report_grader extends grade_report {
foreach ($leftrows as $key => $row) {
$row->cells = array_merge($row->cells, $rightrows[$key]->cells);
$fulltable->data[] = $row;
unset($leftrows[$key]);
unset($rightrows[$key]);
}
$html .= html_writer::table($fulltable);
return $OUTPUT->container($html, 'gradeparent');