From 85007cb1e144ad905556411e683f153a43d056e0 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Tue, 6 Aug 2013 15:27:02 +0100 Subject: [PATCH] Correct comments --- core/modules/wiki.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/core/modules/wiki.js b/core/modules/wiki.js index c4aa9a5d3..8df1e9f3b 100644 --- a/core/modules/wiki.js +++ b/core/modules/wiki.js @@ -197,7 +197,7 @@ exports.addTiddler = function(tiddler) { }; /* -Return a hashmap of the fields that should be set when a tiddler is modified +Return a hashmap of the fields that should be set when a tiddler is created */ exports.getCreationFields = function() { var fields = { @@ -211,13 +211,12 @@ exports.getCreationFields = function() { }; /* -Return a hashmap of the fields that should be set when a tiddler is created +Return a hashmap of the fields that should be set when a tiddler is modified */ exports.getModificationFields = function() { - var fields = { - modified: new Date() - }, + var fields = {}, modifier = this.getTiddlerText(USER_NAME_TITLE); + fields.modified = new Date(); if(modifier) { fields.modifier = modifier; }