# HG changeset patch # User Paul Boddie # Date 1328654553 -3600 # Node ID df25940f8e202ee003ae158849c37276f052b124 # Parent 2ab697b13dcac51beafb53df7b3f58198e23db94 Replace the calendar itself, not the parent node of the calendar element. diff -r 2ab697b13dca -r df25940f8e20 EventAggregatorSupport.py --- a/EventAggregatorSupport.py Sun Feb 05 23:24:31 2012 +0100 +++ b/EventAggregatorSupport.py Tue Feb 07 23:42:33 2012 +0100 @@ -3267,7 +3267,7 @@ var newCalendar = xmlhttp.responseText; if (newCalendar != null) { - calendar.parentNode.innerHTML = newCalendar; + calendar.innerHTML = newCalendar; return false; }