From 247eb04b11f6fe800c25336d4577c8841ff56c5e Mon Sep 17 00:00:00 2001 From: Jermolene Date: Sat, 31 May 2014 19:18:01 +0100 Subject: [PATCH] Extraneous semi-colon --- core/modules/widgets/transclude.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/widgets/transclude.js b/core/modules/widgets/transclude.js index e93b7c93d..485220937 100755 --- a/core/modules/widgets/transclude.js +++ b/core/modules/widgets/transclude.js @@ -43,7 +43,7 @@ TranscludeWidget.prototype.execute = function() { this.transcludeIndex = this.getAttribute("index"); this.transcludeMode = this.getAttribute("mode"); // Check for recursion - var recursionMarker = this.makeRecursionMarker();; + var recursionMarker = this.makeRecursionMarker(); if(this.parentWidget && this.parentWidget.hasVariable("transclusion",recursionMarker)) { this.makeChildWidgets([{type: "text", text: "Recursive transclusion error in transclude widget"}]); return;