Fix deleting events from cache.
authorJan Schneider <jan@horde.org>
Thu, 27 Aug 2009 21:39:55 +0000 (23:39 +0200)
committerJan Schneider <jan@horde.org>
Thu, 27 Aug 2009 21:39:55 +0000 (23:39 +0200)
kronolith/js/kronolith.js

index 5c5e708..e08a8e5 100644 (file)
@@ -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);
         });
     },