Skip Menu |

This queue is for tickets about the XML-DOM-Lite CPAN distribution.

Report information
The Basics
Id: 34587
Status: new
Priority: 0/
Queue: XML-DOM-Lite

People
Owner: Nobody in particular
Requestors: tesneddon [...] bigpond.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.15
Fixed in: (no value)



Subject: Reversed argument order in XML::DOM::Lite::Node method replaceChild
The current code in the replaceChild method in Node.pm calls the insertBefore method like so: $self->insertBefore($refNode, $node); The arguments are reverse and it should actually be: $self->insertBefore($node, $refNode);