Browse Source

Correct validation rule

tags/2.0.0-beta
Maikel Brouwer 11 years ago
parent
commit
aaa84df0af
  1. 4
      docs/guide/model.md

4
docs/guide/model.md

@ -237,8 +237,8 @@ function rules()
{ {
return array( return array(
// rule applied when corresponding field is "safe" // rule applied when corresponding field is "safe"
array('username', 'length', 'min' => 2), array('username', 'string', 'min' => 2),
array('first_name', 'length', 'min' => 2), array('first_name', 'string', 'min' => 2),
array('password', 'required'), array('password', 'required'),
// rule applied when scenario is "signup" no matter if field is "safe" or not // rule applied when scenario is "signup" no matter if field is "safe" or not

Loading…
Cancel
Save