Skip validation during save()

Can I skip validation when calling [tt]save()[/tt] from a model? The reason I want to do this, is because I need to manually call [tt]validate()[/tt] before [tt]save()[/tt], because I change some model properties after validation…

save(false) will do.

Thanks Qiang (I'm an idiot).

According to this: http://www.yiiframew…ord#save-detail

$obj->save(FALSE);

would do the trick

Yeah, I should have read the API more carefully. Thank you both guys.