diff options
author | Arkadiusz Holko <fastred@fastred.org> | 2010-07-26 15:00:23 -0700 |
---|---|---|
committer | Arkadiusz Holko <fastred@fastred.org> | 2010-07-26 15:00:23 -0700 |
commit | 2e3a86af8cec2d16e093b51a2f846ec9efeff96b (patch) | |
tree | 1a3bdfbde5063a4debebf137ebdee402857c96cb | |
parent | b31c0ae306cf4357304fd7fe8130480f336590f9 (diff) | |
download | rails-2e3a86af8cec2d16e093b51a2f846ec9efeff96b.tar.gz rails-2e3a86af8cec2d16e093b51a2f846ec9efeff96b.tar.bz2 rails-2e3a86af8cec2d16e093b51a2f846ec9efeff96b.zip |
Fixed field_error_proc default example on guides
-rw-r--r-- | railties/guides/source/configuring.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile index 2ab28596d8..e2487fa36e 100644 --- a/railties/guides/source/configuring.textile +++ b/railties/guides/source/configuring.textile @@ -181,7 +181,7 @@ There are only a few configuration options for Action View, starting with four o * +config.action_view.warn_cache_misses+ tells Rails to display a warning whenever an action results in a cache miss on your view paths. The default is +false+. -* +config.action_view.field_error_proc+ provides an HTML generator for displaying errors that come from Active Record. The default is <tt>Proc.new{ |html_tag, instance| "<div class=\"field_with_errors\">#{html_tag}</div>" }</tt> +* +config.action_view.field_error_proc+ provides an HTML generator for displaying errors that come from Active Record. The default is <tt>Proc.new{ |html_tag, instance| "<div class=\"field_with_errors\">#{html_tag}</div>".html_safe }</tt> * +config.action_view.default_form_builder+ tells Rails which form builder to use by default. The default is +ActionView::Helpers::FormBuilder+. |