Skip Menu |

This queue is for tickets about the Pod-HtmlEasy CPAN distribution.

Report information
The Basics
Id: 21646
Status: resolved
Priority: 0/
Queue: Pod-HtmlEasy

People
Owner: Nobody in particular
Requestors: rafl [...] debian.org
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 0.07
Fixed in: 1.0000



Subject: Generates invalid HTML with only_content => 1
Line 258 from HtmlEasy.pm reads like this: $html = "<a name='_top'></a>$args{top}$args{index}<div class='pod'><div>$output<div></div>\n" The intention of this line seems to be to wrap the $output into two div elements. First, I don't see why there are two of them. Second, the generated HTML is invalid as the div tag after $output is an opening, not a closing tag. Changing this line to the following will fix that: $html = "<a name='_top'></a>$args{top}$args{index}<div class='pod'><div>$output</div></div>\n" Regards, Flo
fixed in 0.0803