Status/Resolution/Reason: Closed/Fixed/Fixed
Reporter/Name(from Bugbase): Kevin K. / ()
Created: 09/25/2019
Components: Core Runtime
Versions: 2016,2018
Failure Type:
Found In Build/Fixed In Build: hf-2018-00005-315699 / CF2016U13,CF2018U6
Priority/Frequency: Critical /
Locale/System: / Win 2016
Vote Count: 33
Problem Description:
A <CFOUTPUT> tag at a higher level (i.e. outside of a function call) will cause a nested tag error if the function call contains a <CFOUTPUT QUERY="">.
Steps to Reproduce:
test.cfm:
{code:java}
<CFSET testObj = new test() />
<CFOUTPUT>#testObj.Test()#</CFOUTPUT>
{code}
test.cfc:
{code:java}
<cfcomponent>
<cffunction name="test">
<CFQUERY NAME="GetData">
SELECT SomeCol FROM SomeTable
</CFQUERY>
<CFOUTPUT QUERY="GetData">
<!--- error --->
</CFOUTPUT>
</cffunction>
</cfcomponent>
{code}
Actual Result:
"Invalid tag nesting configuration."
Expected Result:
No error
Any Workarounds:
Rollback to Update 4
Attachments:
Comments: