Skip to content
Snippets Groups Projects
Commit a8774abb authored by Tim Steiner's avatar Tim Steiner
Browse files

Fix the year displayed for fall terms when a term list is generated.

parent f3373c5b
No related branches found
Tags
No related merge requests found
......@@ -118,7 +118,7 @@ class Courses_ViewController extends App_Controller_Action
for ($year = $nextYear; $year < $thisYear + 5; $year++) {
$terms[$year . '2'] = 'Spring ' . $year;
$terms[$year . '3'] = 'Summer ' . $year;
$terms[($year + 1) . '1'] = 'Fall ' . ($year + 1);
$terms[($year + 1) . '1'] = 'Fall ' . $year;
}
return $terms;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment