vote up 3 vote down star

If I have the following validation:

validates_inclusion_of :dob, :in => Date.new(1900)..Time.now.years_ago(18).to_date, :message => "You must be 18 or older to register"

The actual message on the site that shows up is:

"Dob You must be 18 or older to register"

Is there any way not to include the column name at the beginning of the message?

Thank you

Tom

flag

1 Answer

vote up 3 vote down check

Yes. I use the custom-err-msg plugin. It's pretty easy to get up and running, just read the README.

link|flag
no magic built in :dont_include_field_name flag or anything, eh? :) Thanks for the plugin suggestion - I'll check it out. +1 – cakeforcerberus Aug 24 at 2:19
Very easy to set up and works perfectly. Thanks again! – cakeforcerberus Aug 27 at 14:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.