Skip to content

Commit

Permalink
Merge pull request #290 from bcgov/develop/alex-GRAD2-2392
Browse files Browse the repository at this point in the history
GRAD2-2392
  • Loading branch information
arybakov-cgi authored Nov 21, 2023
2 parents b377a44 + a789c55 commit 5f66cf4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ private void sortOnCourseCode(List<StudentCourse> cList) {
}

private String getCredits(String program, String courseCode, Integer totalCredits, boolean isRestricted) {
if (((program.contains("2004") || program.contains("2018")) && (courseCode.startsWith("X") || courseCode.startsWith("CP"))) || isRestricted) {
if (((program.contains("2004") || program.contains("2018") || program.contains("2023")) && (courseCode.startsWith("X") || courseCode.startsWith("CP"))) || isRestricted) {
return String.format("(%s)", totalCredits);
}
return String.valueOf(totalCredits);
Expand Down

0 comments on commit 5f66cf4

Please sign in to comment.