Hello,
This applies to XML-Parser-2.34 and earlier.
XML::Parser::Expat::xml_escape only escapes the first quote (be it double or
simple).
Shouldn't "/g;" be added to s/// in Expat.pm?
elsif ($_ eq '"') {
$text =~ s/\"/\"/g;
}
elsif ($_ eq "'") {
$text =~ s/\'/\'/g;
}
Cheers,
V.