Ticket #318 (closed defect: fixed)

Opened 17 years ago

Last modified 15 years ago

Included Helper/DataManipulationLib.cfm Fails on CF7

Reported by: DanWilson Owned by:
Priority: normal Milestone: 3.0
Version: 3.0.178 Severity: minor
Keywords: Cc:

Description (last modified by cfgrok) (diff)

Originally posted by Dan Wilson on 5/14/2008 at 8:28 AM: entered by Ezra Parker on port to new system

Environment: CF7 on Linux

The following line of the xmlMerge function blows chunks on cf7. The == operator is not supported on cf versions < 8

if(arrayLen(readNode.xmlNodes) AND XmlGetNodeType(readNode.xmlNodes[1]) == "CDATA_SECTION_NODE"){

(line 3613)

Replace the == operator with IS and all is well.

if(arrayLen(readNode.xmlNodes) AND XmlGetNodeType(readNode.xmlNodes[1]) IS "CDATA_SECTION_NODE"){

A corrected file in its entirety is attached.

Attachments

DataManipulationLib.cfm (160.7 kB) - added by cfgrok 17 years ago.

Change History

Changed 17 years ago by cfgrok

Changed 17 years ago by cfgrok

  • status changed from new to closed
  • resolution set to fixed

Originally posted by Dan Wilson on 10/28/2008 at 9:58 AM: entered by Ezra Parker on port to new system

Removed the helpers in the distro. People can roll their own

Changed 17 years ago by cfgrok

  • description modified (diff)
  • severity changed from normal to minor
Note: See TracTickets for help on using tickets.