From 7953b95d13c7759d7fc19f50aafa35438443d132 Mon Sep 17 00:00:00 2001 From: Jermolene Date: Thu, 7 Aug 2014 15:43:48 +0100 Subject: [PATCH] Include subtiddler in transclusion recursion detection --- core/modules/widgets/transclude.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/modules/widgets/transclude.js b/core/modules/widgets/transclude.js index 174a7a3f8..bc20d44c6 100755 --- a/core/modules/widgets/transclude.js +++ b/core/modules/widgets/transclude.js @@ -85,6 +85,8 @@ TranscludeWidget.prototype.makeRecursionMarker = function() { output.push(this.transcludeField || ""); output.push("|"); output.push(this.transcludeIndex || ""); + output.push("|"); + output.push(this.transcludeSubTiddler || ""); output.push("}"); return output.join(""); };