From c3f34fc5d5c035666cec1d3e8f546b4ec2134944 Mon Sep 17 00:00:00 2001 From: Jan Schneider Date: Thu, 27 Aug 2009 23:39:55 +0200 Subject: [PATCH] Fix deleting events from cache. --- kronolith/js/kronolith.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kronolith/js/kronolith.js b/kronolith/js/kronolith.js index 5c5e7086c..e08a8e553 100644 --- a/kronolith/js/kronolith.js +++ b/kronolith/js/kronolith.js @@ -1609,7 +1609,7 @@ KronolithCore = { return; } this.ecache.get(calendar[0]).get(calendar[1]).each(function(day) { - delete day.value[event]; + day.value.unset(event); }); }, -- 2.11.0