From d2dbc734480ae5f7fba3149472da9bc94a95d7e8 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Tue, 12 Nov 2013 19:52:25 +0000 Subject: [PATCH] Correct typo --- core/modules/wiki.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/wiki.js b/core/modules/wiki.js index 72067bd63..c05098849 100755 --- a/core/modules/wiki.js +++ b/core/modules/wiki.js @@ -761,7 +761,7 @@ parentWidget: optional parent widget for the root node */ exports.renderText = function(outputType,textType,text,options) { options = options || {}; - var parser = $tw.wiki.parseText(textType,text), + var parser = this.parseText(textType,text,options), widgetNode = this.makeWidget(parser,options); var container = $tw.document.createElement("div"); widgetNode.render(container,null);