From d42fb673f88ea6f0a23583bbc92bfcdb967180a1 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Tue, 29 Oct 2013 21:20:59 +0000 Subject: [PATCH] Fix checkbox widget to update `modified` and `modifier` fields --- core/modules/new_widgets/checkbox.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/new_widgets/checkbox.js b/core/modules/new_widgets/checkbox.js index 32c05bc62..da08abb62 100644 --- a/core/modules/new_widgets/checkbox.js +++ b/core/modules/new_widgets/checkbox.js @@ -70,7 +70,7 @@ CheckboxWidget.prototype.handleChangeEvent = function(event) { if(checked) { newTags.push(this.checkboxTag); } - this.wiki.addTiddler(new $tw.Tiddler(tiddler,{tags: newTags})); + this.wiki.addTiddler(new $tw.Tiddler(tiddler,{tags: newTags},this.wiki.getModificationFields())); } };