Skip to content

Commit

Permalink
Line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusgreen committed Apr 7, 2024
1 parent f261b2b commit a8191e6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion classes/rubric.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ public function get_data(\assign $assign, \cm_info $cm) : array {
AND stu.deleted = 0
ORDER BY lastname ASC, firstname ASC, userid ASC, criteria.sortorder ASC";

$data = $DB->get_records_sql($sql, ['assignid' => $cm->id, 'instancestatus' => \gradingform_instance::INSTANCE_STATUS_ACTIVE]);
$data = $DB->get_records_sql($sql, ['assignid' => $cm->id,
'instancestatus' => \gradingform_instance::INSTANCE_STATUS_ACTIVE]);
$data = set_blindmarking($data, $assign, $cm);
return $data;
}
Expand Down

0 comments on commit a8191e6

Please sign in to comment.