From 8bfc6f3557fadacd5c5b85688110ad28a7a37833 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Wed, 8 Jul 2015 08:26:19 +0100 Subject: [PATCH] Adjust cache names for parse caches The old names were a hangover from an old refactoring. --- 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 81016ec78..f4fab675f 100755 --- a/core/modules/wiki.js +++ b/core/modules/wiki.js @@ -777,7 +777,7 @@ Parse a tiddler according to its MIME type */ exports.parseTiddler = function(title,options) { options = $tw.utils.extend({},options); - var cacheType = options.parseAsInline ? "newInlineParseTree" : "newBlockParseTree", + var cacheType = options.parseAsInline ? "inlineParseTree" : "blockParseTree", tiddler = this.getTiddler(title), self = this; return tiddler ? this.getCacheForTiddler(title,cacheType,function() {