A user submits a form and all of the information is valid.
I just discoverd that when they click the back button the following validation gets triggered.
validates_format_of :email,
:with => /^[A-Z0-9._%-]+@([A-Z0-9-]+\.)+[A-Z]{2,4}$/i,
:message => "should be something like youremail@something.com"
Why is this happening and how can I stop it from being triggered?