spec/lib/silent.cfm
2025-06-02 16:16:51 +03:00

9 lines
351 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<cfsilent>
<!--- Управляемая имитация cfsilent (с возможностью отключения для отладки) --->
<cfif thisTag.executionMode IS "end">
<cfparam name="ATTRIBUTES.silent" type="boolean" default="Yes"/>
<cfif ATTRIBUTES.silent>
<cfset thisTag.generatedContent=""/>
</cfif>
</cfif>
</cfsilent>