Skip Menu |

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

Report information
The Basics
Id: 32302
Status: new
Priority: 0/
Queue: FormValidator-Simple

People
Owner: Nobody in particular
Requestors: barry [...] tristanmedia.com
Cc:
AdminCc:

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



Subject: ASCII validator should allow spaces
The ASCII validator should allow spaces. The range 0x21-0x7e should be 0x20-0x7e. sub FormValidator::Simple::Validator::ASCII { my ($self, $params, $args) = @_; my $data = $params->[0]; return $data =~ /^[\x20-\x7E]+$/ ? FormValidator::Simple::Constants::TRUE() : FormValidator::Simple::Constants::FALSE(); }