diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-09-22 22:09:56 -0700 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-09-22 22:09:56 -0700 |
commit | d2bf5c9d1f28e90223b484addd6969c46f3160b5 (patch) | |
tree | e30605417acaabd64f1c23c9fb53fd85aaeedb08 /modules/user/models | |
parent | 3a9bdebafda1807bb2294c041e655f6464841bf0 (diff) | |
parent | 7116f820ca2b6338abdca233a4b1d42d29a41150 (diff) |
Merge branch 'master' into talmdal_dev
Diffstat (limited to 'modules/user/models')
-rw-r--r-- | modules/user/models/group.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/models/group.php b/modules/user/models/group.php index 57b12963..b27c7250 100644 --- a/modules/user/models/group.php +++ b/modules/user/models/group.php @@ -41,7 +41,7 @@ class Group_Model extends ORM implements Group_Definition { // validate() is recursive, only modify the rules on the outermost call. if (!$array) { $this->rules = array( - "name" => array("rules" => array("required", "length[4,255]"), + "name" => array("rules" => array("required", "length[1,255]"), "callbacks" => array(array($this, "valid_name")))); } |