diff --git a/core/modules/widgets/navigator.js b/core/modules/widgets/navigator.js index c70cd820e..40c173352 100755 --- a/core/modules/widgets/navigator.js +++ b/core/modules/widgets/navigator.js @@ -324,9 +324,11 @@ Generate a title for the draft of a given tiddler */ NavigatorWidget.prototype.generateDraftTitle = function(title) { var c = 0, - draftTitle; + draftTitle, + username = this.wiki.getTiddlerText("$:/status/UserName"), + attribution = username ? " by " + username : ""; do { - draftTitle = "Draft " + (c ? (c + 1) + " " : "") + "of '" + title + "'"; + draftTitle = "Draft " + (c ? (c + 1) + " " : "") + "of '" + title + "'" + attribution; c++; } while(this.wiki.tiddlerExists(draftTitle)); return draftTitle;