Closed adamcameron closed 7 years ago
Grouped cfoutput has same issue, just FYI. It might be a good edge-case to test your solution with:
<cfset q = queryNew("c1,c2", "varchar,varchar", [
["A", "1"],
["B", "2"],
["B", "22"],
["C", "3"],
["C", "33"],
["C", "333"]
])>
<cfoutput query="q" group="c1">
<h2>#c1#</h2>
<ul>
<cfoutput>
<li>#c2#</li>
</cfoutput>
</ul>
</cfoutput>
reopening because still need to fix nested cfoutput
Sorry dude. I just presumed it was another example of the same glitch. Woulda raised another ticket had I realised they were different issues.
no prob
Input (from the Adobe docs):
Output:
Obvs. should use a block construct when there are nested tags here.