Ticket #318 (new defect) — at Initial Version

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: normal
Keywords: Cc:

Description

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

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.

Change History

Changed 17 years ago by cfgrok

Note: See TracTickets for help on using tickets.