Subject: | Bug fix for _start_tag |
Is there a github repo for this? I have a bug fix for _start_tag().
The method should look like this:
sub _start_tag {
my($self, $tagname, $attr, $attrseq, $text) = @_;
if ($tagname eq 'base' && $attr->{href}) {
$self->{resolvelink_base} = $attr->{href};
}
Currently the code checks if $attr->{href} is defined. But we also don't want to do this assignment if the value is an empty string.
Thanks,
Eric
(kablamo)