http://www.perlmonks.org?node_id=978827


in reply to XML-Twig problem with Perl 5.16

In 5.14 are you sure you are using XML::Twig 3.40?

In previous versions of the module there was a bug that would let you paste the root of an XML::Twig object without cutting it first. It looks like it is the case here, when you paste $objRoot.

On a side note, you may want to write XML::Twig->new instead of new XML::Twig, search the web for perl indirect object syntax if you want to know why.

Replies are listed 'Best First'.
Re^2: XML-Twig problem with Perl 5.16
by zuma53 (Beadle) on Jun 28, 2012 at 21:14 UTC
    In my 5.14 version, Twig 3.39 is installed there.

    Thanks.

      There you go then, you should either fix the bug by cutting $objRoot before pasting it, or wait for XML::Twig 3.41 which should allow for the old behaviour to work.