From fbe99297798ab6300d62b2aa03c4e70c54adaedd Mon Sep 17 00:00:00 2001 From: Grant Copley Date: Sun, 29 Sep 2024 06:46:41 -0500 Subject: [PATCH] attempt fix parsing errors in tests --- 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 c021969..a535e55 100644 --- a/models/preprocessor/TemplatePreprocessor.cfc +++ b/models/preprocessor/TemplatePreprocessor.cfc @@ -24,9 +24,9 @@ component { */ function parseScripts( content, counter = 1 ) { if ( counter == 1 ) { - content = replaceNoCase( content, "", "", "all" ); + content = replaceNoCase( content, "", "", "all" ); } - content = replaceNoCase( content, "", "", "one" ); + content = replaceNoCase( content, "", "", "one" ); if ( findNoCase( "", content ) ) { content = parseScripts( content, counter + 1 ); }