diff --git a/models/preprocessor/TemplatePreprocessor.cfc b/models/preprocessor/TemplatePreprocessor.cfc index 6efb7aa..c021969 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 ); }