diff --git a/kronolith/docs/CHANGES b/kronolith/docs/CHANGES index 53344d5b6c9..06fb4b851b6 100644 --- a/kronolith/docs/CHANGES +++ b/kronolith/docs/CHANGES @@ -2,6 +2,8 @@ v4.2.2-git ---------- +[jan] Fix JavaScript error if not showing all events in month view (Jasper + Olbrich , Bug #13433). [jan] Fix displayed CalDAV URLs for shared calendars in basic view too (piper@hrz.uni-marburg.de, Bug #12380). diff --git a/kronolith/js/kronolith.js b/kronolith/js/kronolith.js index 1c560650377..de3f7312d9f 100644 --- a/kronolith/js/kronolith.js +++ b/kronolith/js/kronolith.js @@ -1614,6 +1614,8 @@ KronolithCore = { // We don't want more than one all-day // event. var elm = allDays.pop(); + // Remove element from events as well. + events = events.without(elm); elm.purge(); elm.remove(); insertBefore = this.findInsertBefore(events, event, date); diff --git a/kronolith/package.xml b/kronolith/package.xml index 36d6d53ac15..f2254bfefc0 100644 --- a/kronolith/package.xml +++ b/kronolith/package.xml @@ -33,6 +33,7 @@ GPL-2.0 +* [jan] Fix JavaScript error if not showing all events in month view (Jasper Olbrich <Jasper.Olbrich@students.uni-marburg.de>, Bug #13433). * [jan] Fix displayed CalDAV URLs for shared calendars in basic view too (piper@hrz.uni-marburg.de, Bug #12380). @@ -2441,6 +2442,7 @@ 2014-08-04 GPL-2.0 +* [jan] Fix JavaScript error if not showing all events in month view (Jasper Olbrich <Jasper.Olbrich@students.uni-marburg.de>, Bug #13433). * [jan] Fix displayed CalDAV URLs for shared calendars in basic view too (piper@hrz.uni-marburg.de, Bug #12380).