aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2010-10-18 16:32:58 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2010-10-18 16:32:58 +0000
commit0eec36291b7385d68e3906ef7e65957964de028a (patch)
tree75d370cf9e0f9dba5f40c6c3406a0b4b723f46ec
parent38e8ae7d4d95d5d1f112cfcc4c109bcb0dadd400 (diff)
added max number of characters allowed for the e_mail entry
-rw-r--r--h-source/Application/Controllers/UsersController.php2
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 - _ !"
);