We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fe03f84 + c82f3ec commit 2be81fdCopy full SHA for 2be81fd
Changes
@@ -1,3 +1,7 @@
1
+
2
+ Fixed Text validation checking, to allow deflations and transformations
3
+ to be applied first.
4
5
0.40066 Mon Jul 18, 2016
6
Improve Select field option list support
7
Support arrayref-of-arrayref options in a subroutine
lib/HTML/FormHandler/Field/Text.pm
@@ -40,7 +40,7 @@ sub validate {
40
my $field = shift;
41
42
return unless $field->next::method;
43
- my $value = $field->input;
+ my $value = $field->value;
44
# Check for max length
45
if ( my $maxlength = $field->maxlength ) {
46
return $field->add_error( $field->get_message('text_maxlength'),
0 commit comments