From 7aaef4e28b7f1f14ea2dcf8566d4a54fe8a82f72 Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Fri, 6 Sep 2024 10:05:28 -0600 Subject: [PATCH] Use ACF compatible tag-in-script syntax --- system/mockutils/MockGenerator.cfc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/mockutils/MockGenerator.cfc b/system/mockutils/MockGenerator.cfc index 68de968..1269934 100644 --- a/system/mockutils/MockGenerator.cfc +++ b/system/mockutils/MockGenerator.cfc @@ -411,7 +411,7 @@ component accessors="true" { * @templatePath The template path to include */ private function $include( required string templatePath ){ - include template="#arguments.templatePath#"; + cfinclude( template="#arguments.templatePath#" ); } }