Changes
Title
unchanged
How to customize the error message of a validation rule
Category
unchanged
Tutorials
Yii version
unchanged
Tags
unchanged
Content
changed
[...]
class Post extends CActiveRecord
{
public function rules()
{
return array(
array('title, content', 'required',
'message'=>'Please enter a value for {attribute}.'),
// ... other rules
);
}
}
```[...]