Skip to content
Snippets Groups Projects
Commit 76dca6d4 authored by srosse's avatar srosse
Browse files

OMA-74: fix a deadly missing line (and make the controller robust)

parent f7038950
No related branches found
No related tags found
No related merge requests found
...@@ -223,7 +223,7 @@ public class WeeklyCalendarController extends BasicController implements Activat ...@@ -223,7 +223,7 @@ public class WeeklyCalendarController extends BasicController implements Activat
weeklyCalendar.addListener(this); weeklyCalendar.addListener(this);
// subscription, see OLAT-3861 // subscription, see OLAT-3861
if (!isGuest) { if (!isGuest && !calendarWrappers.isEmpty()) {
SubscriptionProvider provider = new SubscriptionProviderImpl(caller, calendarWrappers.get(0)); SubscriptionProvider provider = new SubscriptionProviderImpl(caller, calendarWrappers.get(0));
subsContext = provider.getSubscriptionContext(); subsContext = provider.getSubscriptionContext();
// if sc is null, then no subscription is desired // if sc is null, then no subscription is desired
......
...@@ -121,6 +121,7 @@ public class CourseCalendars { ...@@ -121,6 +121,7 @@ public class CourseCalendars {
ICourse course = CourseFactory.loadCourse(ores); ICourse course = CourseFactory.loadCourse(ores);
CourseLinkProviderController clpc = new CourseLinkProviderController(course, ureq, wControl); CourseLinkProviderController clpc = new CourseLinkProviderController(course, ureq, wControl);
courseKalendarWrapper.setLinkProvider(clpc); courseKalendarWrapper.setLinkProvider(clpc);
calendars.add(courseKalendarWrapper);
Identity identity = ureq.getIdentity(); Identity identity = ureq.getIdentity();
CourseGroupManager cgm = course.getCourseEnvironment().getCourseGroupManager(); CourseGroupManager cgm = course.getCourseEnvironment().getCourseGroupManager();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment