Skip to content

Commit

Permalink
Online Student Scheduling: Course Types
Browse files Browse the repository at this point in the history
- when creating XCourseId out of XCourse, also copy course type reference
  - this fixes the issue of ignoring course types when the online scheduling server runs in the replicated mode
  • Loading branch information
tomas-muller committed Dec 2, 2015
1 parent fabe1a1 commit 9b85541
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ public XCourseId(XCourseId course) {
iCourseId = course.getCourseId();
iCourseName = course.getCourseName();
iTitle = course.getTitle();
iType = course.getType();
}

public XCourseId(Course course) {
Expand Down
6 changes: 6 additions & 0 deletions WebContent/help/Release-Notes.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@
<line>Fixed a NullPointerException error when there is Display Conflicts in the event filter with nothing in the room filter and the query returns a meeting that has no room.</line>
</description>
</item>
<item>
<name>Online Student Scheduling</name>
<description>
<line>Course Types: Fixed an issue of ignoring course types when the online scheduling server runs in the replicated mode.</line>
</description>
</item>
</category>
<category>
<title>Other Improvements</title>
Expand Down

0 comments on commit 9b85541

Please sign in to comment.