From 26ac9406374db689efbfc264a6757d7cffbd1682 Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Mon, 21 Oct 2013 18:32:29 +0100 Subject: [PATCH] Fix 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 c65c7dc10..cca58c2c1 100755 --- a/core/modules/wiki.js +++ b/core/modules/wiki.js @@ -648,7 +648,7 @@ var tweakMacroDefinition = function(nodeList) { }; nodeList[0].children = nodeList.slice(1); nodeList.splice(1,nodeList.length-1); - tweakMacroDefinition(nodeList.children); + tweakMacroDefinition(nodeList[0].children); } };