From 9b85541afe04f4668128859870fe595596a19c87 Mon Sep 17 00:00:00 2001 From: tomas-muller Date: Wed, 2 Dec 2015 11:16:07 +0100 Subject: [PATCH] Online Student Scheduling: Course Types - 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 --- .../unitime/timetable/onlinesectioning/model/XCourseId.java | 1 + WebContent/help/Release-Notes.xml | 6 ++++++ 2 files changed, 7 insertions(+) diff --git a/JavaSource/org/unitime/timetable/onlinesectioning/model/XCourseId.java b/JavaSource/org/unitime/timetable/onlinesectioning/model/XCourseId.java index 2287993774..c0506b096f 100644 --- a/JavaSource/org/unitime/timetable/onlinesectioning/model/XCourseId.java +++ b/JavaSource/org/unitime/timetable/onlinesectioning/model/XCourseId.java @@ -71,6 +71,7 @@ public XCourseId(XCourseId course) { iCourseId = course.getCourseId(); iCourseName = course.getCourseName(); iTitle = course.getTitle(); + iType = course.getType(); } public XCourseId(Course course) { diff --git a/WebContent/help/Release-Notes.xml b/WebContent/help/Release-Notes.xml index 27813d749d..1d2ca60033 100644 --- a/WebContent/help/Release-Notes.xml +++ b/WebContent/help/Release-Notes.xml @@ -66,6 +66,12 @@ 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. + + Online Student Scheduling + + Course Types: Fixed an issue of ignoring course types when the online scheduling server runs in the replicated mode. + + Other Improvements