diff options
author | Bharat Mediratta <bharat@menalto.com> | 2008-11-16 07:51:42 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2008-11-16 07:51:42 +0000 |
commit | 4610fc8e7f32f1a582b5f6c9c25714151b9a2967 (patch) | |
tree | bcfecbae267d03b231eb29b7a4f829fa96af1190 /modules/user/models | |
parent | ce7fbf979d249e5e1effb7040d3e51a2c35015e3 (diff) |
Create Forge::add_rules_from() which pulls validation rules from the model and
associates them with the form. This replaces the various _add_validation_rules()
functions in the user and comment modules.
Move user edit form into user helper for consistency with the comment module.
Implement missing _form method in the user controller.
Diffstat (limited to 'modules/user/models')
-rw-r--r-- | modules/user/models/user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/user/models/user.php b/modules/user/models/user.php index 1c56b34e..5c88d8dc 100644 --- a/modules/user/models/user.php +++ b/modules/user/models/user.php @@ -20,7 +20,7 @@ class User_Model extends ORM { protected $has_and_belongs_to_many = array("groups"); - var $validation_rules = array( + var $rules = array( "name" => "required|length[4,32]", "email" => "valid_email", "password" => "required|length[5,40]"); |