Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

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

Report information
The Basics
Id: 5559
Status: resolved
Priority: 0/
Queue: Pod-Simple

People
Owner: Nobody in particular
Requestors: michael_scott [...] mac.com
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: 3.02



Subject: my hidden by if
Line 168 of Pod::Simple::HTML is my $out = $to if defined $to and length $to; this causes $out in the next line to be global $out .= "#" . $section if defined $section and length $section; leading to concatenated strings such as #LINK1#LINK2#LINK3 etc.
From: allison [...] perl.org
This bug is fixed, line now reads: my $out = (defined $to and length $to) ? $to : '';