mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-30 20:26:52 +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:
@@ -299,7 +299,7 @@ EditBitmapWidget.prototype.saveChanges = function() {
|
||||
type = dataURL.substring(posColon+1,posSemiColon),
|
||||
text = dataURL.substring(posComma+1);
|
||||
var update = {type: type, text: text};
|
||||
this.wiki.addTiddler(new $tw.Tiddler(tiddler,update));
|
||||
this.wiki.addTiddler(new $tw.Tiddler(this.wiki.getModificationFields(),tiddler,update,this.wiki.getCreationFields()));
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user