From f89ca3c3387e1d625e3ddf24b51dedcac3a9c1e5 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Tue, 10 Apr 2012 14:38:09 +0100 Subject: [PATCH] Fixed problem with obtaining stringified version of field content --- js/macros/edit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/macros/edit.js b/js/macros/edit.js index 6a308c848..60dafc797 100644 --- a/js/macros/edit.js +++ b/js/macros/edit.js @@ -170,7 +170,7 @@ TextEditor.prototype.getContent = function() { field = this.macroNode.hasParameter("field") ? this.macroNode.params.field : "title", value; if(tiddler) { - value = tiddler[field]; + value = tiddler.getFieldString(field); } else { switch(field) { case "text":