Skip to content

Commit d9ef268

Browse files
committed
Fixed bug with downloading student id
1 parent af9b260 commit d9ef268

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/Http/Controllers/AutoGradedAndFileSubmissionController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public function getAutoGradedSubmissionsByAssignment(Assignment $assignment,
6767
$download_fields->{'First Name'} = 'first_name';
6868
$download_fields->{'Last Name'} = 'last_name';
6969
$download_fields->Email = 'email';
70-
$download_fields->{'Student ID'} = 'student_id';
70+
$download_fields->{'Student ID'} = 'student_ID';
7171
foreach ($questions as $key => $question) {
7272
$question_num = $key + 1;
7373
$download_fields->{" $question_num"} = $key + 1;

0 commit comments

Comments
 (0)