mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-11-16 07:17:21 +00:00
Fix issues with creation and modification dates
There were several places where tiddlers were being written without the creation/modification details being updated. See https://groups.google.com/d/msgid/tiddlywiki/17ef8ab0-0128-4467-8a9d-f17 bdbcf3618%40googlegroups.com
This commit is contained in:
@@ -67,7 +67,7 @@ DeleteFieldWidget.prototype.invokeAction = function(triggeringWidget,event) {
|
||||
removeFields[name] = undefined;
|
||||
}
|
||||
});
|
||||
this.wiki.addTiddler(new $tw.Tiddler(tiddler,removeFields));
|
||||
this.wiki.addTiddler(new $tw.Tiddler(this.wiki.getModificationFields(),tiddler,removeFields,this.wiki.getCreationFields()));
|
||||
}
|
||||
return true; // Action was invoked
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user