Fixed
Details
Assignee
Pothys - MitrahSoftPothys - MitrahSoftReporter
Pothys - MitrahSoftPothys - MitrahSoftPriority
NewLabels
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Details
Details
Assignee
Pothys - MitrahSoft
Pothys - MitrahSoftReporter
Pothys - MitrahSoft
Pothys - MitrahSoftPriority
Labels
Fix versions
New Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Sprint
None
Created 18 June 2020 at 12:07
Updated 26 July 2022 at 06:03
Resolved 26 July 2022 at 06:03
It throws an error while using xml.elemNew(). but, Works fine with xmlElemNew() function.
https://docs.lucee.org/reference/objects/xml/elemnew.html
<cfscript> xml_document = XmlNew(); xml_root = xmlelemNew(xml_document,"notes"); xml_document.XmlRoot = xml_root; writeDump(xml_document); </cfscript> <cfscript> xml_document = XmlNew(); xml_root = xml_document.elemNew("notes"); xml_document.XmlRoot = xml_root; writeDump(xml_document); </cfscript>