Ticket #118 (new defect)
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
Note: See
TracTickets for help on using
tickets.

