Fix a typo in the newline/whitespace removal code

This commit is contained in:
Colin Kuskie 2008-04-24 23:12:34 +00:00
parent e430a2fe47
commit d786e7dc36

View file

@ -99,7 +99,7 @@ An optional value to process, instead of POST input.
sub getValue {
my $self = shift;
my $value = $self->SUPER::getValue(@_);
$value =~ tr/\n\n//d;
$value =~ tr/\r\n//d;
return $value;
}