Hi, I was looking around a bit and couldn't find any callbacks that executed before before_validation The current problem with using before_validation is that it won't fire if I'm not using validations with #save(:validate => false) - which makes sense. Before_save won't suffice because I want these callbacks to fire before validation on the occasions that I do use validation. Just a sidenote, these callbacks are for normalizing some strings.
Right now, I can do an alias chain on #save and have my sanitization methods fire before anything else but I was hoping for something cleaner. Thanks, Keith -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

