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