From 19d1d42daf64021221a558d6e33dfb46dddc8bfe Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 31 May 2010 13:48:47 -0500 Subject: Base options cant live in lazy loaded helpers as they then wont be available to set for config --- actionpack/lib/action_view/base.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'actionpack/lib/action_view/base.rb') diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb index 735398d972..f4af763afe 100644 --- a/actionpack/lib/action_view/base.rb +++ b/actionpack/lib/action_view/base.rb @@ -165,6 +165,10 @@ module ActionView #:nodoc: cattr_accessor :debug_rjs @@debug_rjs = false + # Specify the proc used to decorate input tags that refer to attributes with errors. + cattr_accessor :field_error_proc + @@field_error_proc = Proc.new{ |html_tag, instance| "
#{html_tag}
".html_safe } + class_attribute :helpers remove_method :helpers attr_reader :helpers -- cgit v1.2.3