Subject: | AsAttributes is broken |
The AsAttributes option is broken in windows XP activeperl v5.8.8.
The sax1tosax2_attrs function in DBI.pm creates a problem. Change the
send_tag function as a workaround.
BROKEN LINE IN send_tag:
$self->SUPER::start_element({ Name => $name, Attributes =>
sax1tosax2_attrs(\%attributes) });
FIXED:
$self->SUPER::start_element({ Name => $name, Attributes => \%
attributes });