Skip Menu |

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

Report information
The Basics
Id: 104391
Status: new
Priority: 0/
Queue: HTML-Widget

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

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



Subject: Avoid undef warnings in HTML::Widget::Filter::TrimEdges
We've had this patch applied locally for quite some time: @@ -24,10 +24,8 @@ sub filter { my ( $self, $value ) = @_; - if (defined $value) { - $value =~ s/^\s+//; - $value =~ s/\s+$//; - } + $value =~ s/^\s+//; + $value =~ s/\s+$//; return $value; }