From 64057f3ac91a86cd089072c9d20a99f64097d48a Mon Sep 17 00:00:00 2001 From: Grant Copley Date: Sun, 29 Sep 2024 06:42:49 -0500 Subject: [PATCH] attempt fix --- models/preprocessor/TemplatePreprocessor.cfc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/preprocessor/TemplatePreprocessor.cfc b/models/preprocessor/TemplatePreprocessor.cfc index 6efb7aaa..c021969e 100644 --- a/models/preprocessor/TemplatePreprocessor.cfc +++ b/models/preprocessor/TemplatePreprocessor.cfc @@ -26,7 +26,7 @@ component { if ( counter == 1 ) { content = replaceNoCase( content, "", "", "all" ); } - content = replaceNoCase( content, "", "" ); + content = replaceNoCase( content, "", "", "one" ); if ( findNoCase( "", content ) ) { content = parseScripts( content, counter + 1 ); } @@ -45,7 +45,7 @@ component { if ( counter == 1 ) { content = replaceNoCase( content, "", "", "all" ); } - content = replaceNoCase( content, "", "" ); + content = replaceNoCase( content, "", "", "one"); if ( findNoCase( "", content ) ) { content = parseAssets( content, counter + 1 ); }