Question
Errors after update 12 on coldfusion 2016
sample code :
<cfscript>
myQuery = queryNew("id,name,amount","Integer,Varchar,Integer",
[
{id=1,name="One",amount=15},
{id=2,name="Two",amount=18},
{id=3,name="Three",amount=32}
]);
writeOutput("The new query is:");
writeDump(myQuery);
</cfscript>
<cfoutput>
<cfoutput query="myQuery">
#myQuery.name# <br>
</cfoutput>
</cfoutput>
Produces error
| Invalid tag nesting configuration. |
| A query driven queryloop tag is nested inside a queryloop tag that also has a query attribute. This is not allowed. Nesting these tags implies that you want to use grouped processing. However, only the top-level tag can specify the query that drives the processing. |
Error only Appearing after update 12 in CF2016.
Worked fine in all previous versions.
Long time dev here. Too much production code to change after update 12 patch applied.
https://helpx.adobe.com/coldfusion/kb/coldfusion-2016-update-12.html
Any advise.
