Skip to content

Commit

Permalink
Update add_drop_report.php
Browse files Browse the repository at this point in the history
  • Loading branch information
pbailie committed Nov 27, 2024
1 parent 8b3585c commit 541d5e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion student_auto_feed/add_drop_report.php
Original file line number Diff line number Diff line change
Expand Up @@ -367,8 +367,8 @@ public static function compile_report($prev_course_enrollments, $course_enrollme
$prev_course_enrollment = str_pad($prev_course_enrollment, 5, " ", STR_PAD_LEFT);
$course_enrollment = str_pad($course_enrollment, 5, " ", STR_PAD_LEFT);
$manual_flag = str_pad($manual_flag, 6, " ", STR_PAD_LEFT);
$withdrew = str_pad($withdrew, 6, "", STR_PAD_LEFT);
$diff = str_pad($diff, 10, " ", STR_PAD_LEFT);
$ratio = str_pad($ratio, 5, " ", STR_PAD_RIGHT);

// Add row to report.
$report .= "{$course}{$prev_course_enrollment} {$course_enrollment} {$manual_flag} {$diff} {$ratio} {$withdrew}\n";
Expand Down

0 comments on commit 541d5e4

Please sign in to comment.