Revision #14 has been created by samdark on May 27, 2015, 5:48:35 AM with the memo:
Added safe => false
« previous (#13)
Changes
Title
unchanged
How to upload a file using a model
Category
unchanged
Tutorials
Yii version
unchanged
Tags
unchanged
File upload
Content
changed
[...]
// ... other attributes
public function rules()
{
return array(
array('image', 'file', 'types'=>'jpg, gif, png', 'safe' => false),
);
}
}
```[...]