From 8711726ecd692e150f5ff577c2e8decbd9a0796f Mon Sep 17 00:00:00 2001 From: Jeremy Ruston Date: Fri, 2 May 2025 10:29:53 +0100 Subject: [PATCH] Useful to give the start method access to the widget --- core/modules/filters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/modules/filters.js b/core/modules/filters.js index 59715978a..0be387e9c 100644 --- a/core/modules/filters.js +++ b/core/modules/filters.js @@ -387,7 +387,7 @@ exports.compileFilter = function(filterString,options) { widget = $tw.rootWidget; } if(wrappers.start) { - wrappers.start(source); + wrappers.start(source,widget); } var results = new $tw.utils.LinkedList(); self.filterRecursionCount = (self.filterRecursionCount || 0) + 1;