Skip Menu |

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

Report information
The Basics
Id: 6714
Status: new
Priority: 0/
Queue: XML-Mini

People
Owner: Nobody in particular
Requestors: troymore [...] nbnet.nb.ca
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: (no value)
Fixed in: (no value)



Subject: When pulling values from elements, enteties are not unescaped
if you have an entity such as "&" in an element (say $foo): print $foo->toString(); produces: <foo> this is a test &amp; ampersand </foo> and you use the "getValue" on this element: my $string = $foo->getValue(); the content of string is: "this is a test &amp; ampersand" It would be nice if the "&amp;" would get coverted back into "&".