From: Mark Wooding Date: Fri, 9 Jun 2023 21:11:46 +0000 (+0100) Subject: mason/dhandler: Pass arguments to the subcomponent. X-Git-Url: https://git.distorted.org.uk/~mdw/tgal/commitdiff_plain/6abe8e591c4e7581ae43bee488a67afd59ea001d mason/dhandler: Pass arguments to the subcomponent. --- diff --git a/mason/dhandler b/mason/dhandler index f66b2b3..ca5dad2 100755 --- a/mason/dhandler +++ b/mason/dhandler @@ -324,7 +324,7 @@ Failed to find ‘<% $path |h %>’. elsif (-f $st) { $comp = ".image"; } else { $comp = ".not-found"; } $r->header_out("X-AGPL-Source" => $SRCURL); - $m->comp($comp, path => $path); + $m->comp($comp, path => $path, %ARGS); % %###----- That's all, folks -------------------------------------------------