I have a filed in my model that contains slug (i.e. for human readable url). Slug consists of slug_<digits>.html
Whenever actionUpdate is called the slug is messed and replaced with slug-<digits>-html
I think it’s the result of php strip_tags() method being called on field value. How do I prevent yii from calling it? Or beter what rule should be applayed to it for yii to allow it?