diff --git a/core/modules/wiki.js b/core/modules/wiki.js index d51f133fc..e997576fa 100755 --- a/core/modules/wiki.js +++ b/core/modules/wiki.js @@ -757,7 +757,7 @@ exports.parseTextReference = function(title,field,index,options) { if(text === undefined) { text = ""; } - return this.parseText("text/vnd.tiddlywiki",text,options); + return this.parseText("text/vnd.tiddlywiki",text.toString(),options); } else if(index) { text = this.extractTiddlerDataItem(title,index,""); return this.parseText("text/vnd.tiddlywiki",text,options);