diff options
author | Léo Hackin <leonardo.freire@giran.com.br> | 2010-11-18 08:25:38 -0200 |
---|---|---|
committer | Léo Hackin <leonardo.freire@giran.com.br> | 2010-11-18 08:25:38 -0200 |
commit | 03f141378705cb544986ad2db54169c8f1c464c0 (patch) | |
tree | 897fede643b34450d31e2a63def169bcacd91bfd | |
parent | 126fbd7ed8a310bf940414c1b7ddab06b03d400e (diff) | |
download | rails-03f141378705cb544986ad2db54169c8f1c464c0.tar.gz rails-03f141378705cb544986ad2db54169c8f1c464c0.tar.bz2 rails-03f141378705cb544986ad2db54169c8f1c464c0.zip |
Fix code for customize the error messages html adding a .html_safe of 8.3 section
-rw-r--r-- | railties/guides/source/active_record_validations_callbacks.textile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/active_record_validations_callbacks.textile b/railties/guides/source/active_record_validations_callbacks.textile index 374c0f84a5..444a1d4154 100644 --- a/railties/guides/source/active_record_validations_callbacks.textile +++ b/railties/guides/source/active_record_validations_callbacks.textile @@ -824,10 +824,10 @@ Here is a simple example where we change the Rails behaviour to always display t ActionView::Base.field_error_proc = Proc.new do |html_tag, instance| if instance.error_message.kind_of?(Array) %(#{html_tag}<span class="validation-error"> - #{instance.error_message.join(',')}</span>) + #{instance.error_message.join(',')}</span>).html_safe else %(#{html_tag}<span class="validation-error"> - #{instance.error_message}</span>) + #{instance.error_message}</span>).html_safe end end </ruby> |