Details
Description
There is a typo in /lib/moodlelib.php that is preventing calendar filter preferences from saving.
CALENDAV instead of CALENDAR.
It's in the function set_login_session_preferences:
The code is this:
calendar_set_filters_status(get_user_preferences('calendav_savedflt', 0xff));
But should be this:
calendar_set_filters_status(get_user_preferences('calendar_savedflt', 0xff));
I can't actually reproduce where this causes a problem (I think the preferences get loaded anyway elsewhere in the calendar jumble) - but I will fix the typo in CVS