Skip Menu |

This queue is for tickets about the HTML-ResolveLink CPAN distribution.

Report information
The Basics
Id: 97671
Status: new
Priority: 0/
Queue: HTML-ResolveLink

People
Owner: Nobody in particular
Requestors: cpan [...] iijo.org
Cc:
AdminCc:

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



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)