diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2010-10-18 16:32:58 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2010-10-18 16:32:58 +0000 |
commit | 0eec36291b7385d68e3906ef7e65957964de028a (patch) | |
tree | 75d370cf9e0f9dba5f40c6c3406a0b4b723f46ec /h-source/Application/Controllers/UsersController.php | |
parent | 38e8ae7d4d95d5d1f112cfcc4c109bcb0dadd400 (diff) |
added max number of characters allowed for the e_mail entry
Diffstat (limited to 'h-source/Application/Controllers/UsersController.php')
-rw-r--r-- | h-source/Application/Controllers/UsersController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/h-source/Application/Controllers/UsersController.php b/h-source/Application/Controllers/UsersController.php index 6e760ba..db30483 100644 --- a/h-source/Application/Controllers/UsersController.php +++ b/h-source/Application/Controllers/UsersController.php @@ -143,7 +143,7 @@ class UsersController extends BaseController "checkAlphanum" => "username", "checkLength|35" => "username", "checkMail" => "e_mail", - "+checkLength|35" => "e_mail", + "+checkLength|60" => "e_mail", "checkEqual" => "password,confirmation", "checkMatch|/^[a-zA-Z0-9\_\-\!]+$/" => "password,confirmation|characters allowed for the password: a-z A-Z 0-9 - _ !" ); |