Ticket #118 (new defect)

Opened 2 years ago

Last modified 1 month ago

Problem when cfoutputonly setting is set to true

Reported by: doryphores Owned by: dhughes
Type: defect Priority: high
Milestone: 1.0 Release Component: Reactor - Core Framework
Version: 1.0 Severity: major
Keywords: Cc:

Description

Line 95 of objectTranslator.cfc uses cfsavecontent:

<cfsavecontent variable="XmlErrors">
	<tables />
</cfsavecontent>

If cfoutputonly cfsetting is set to true, it won't work so cfoutput should be used:

<cfsavecontent variable="XmlErrors">
	<cfoutput><tables /></cfoutput>
</cfsavecontent>

Or maybe this would be more logical:

<cfset XmlErrors = "<tables />" />

Change History

Changed 1 month ago by mark.drew@…

  • milestone set to 1.0 Release
Note: See TracTickets for help on using tickets.