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 & ampersand
</foo>
and you use the "getValue" on this element:
my $string = $foo->getValue();
the content of string is:
"this is a test & ampersand"
It would be nice if the "&" would get coverted back into "&".