aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2010-01-07 01:55:19 +0100
committerJosé Valim <jose.valim@gmail.com>2010-01-07 15:31:50 +0100
commita091e2e4f6472d2f9f9396284f94e4e299a1ecb3 (patch)
treede387a27b601dec881a3f6ebe6606b3284685dbb /actionpack/lib/action_view/helpers
parent821a160a49529f449605e127e26b7376cc83d4d6 (diff)
downloadrails-a091e2e4f6472d2f9f9396284f94e4e299a1ecb3.tar.gz
rails-a091e2e4f6472d2f9f9396284f94e4e299a1ecb3.tar.bz2
rails-a091e2e4f6472d2f9f9396284f94e4e299a1ecb3.zip
errors in ActionView should not be namespaced as well.
Diffstat (limited to 'actionpack/lib/action_view/helpers')
-rw-r--r--actionpack/lib/action_view/helpers/active_model_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/active_model_helper.rb b/actionpack/lib/action_view/helpers/active_model_helper.rb
index c70f29f098..87b7adf6c4 100644
--- a/actionpack/lib/action_view/helpers/active_model_helper.rb
+++ b/actionpack/lib/action_view/helpers/active_model_helper.rb
@@ -216,7 +216,7 @@ module ActionView
end
options[:object_name] ||= params.first
- I18n.with_options :locale => options[:locale], :scope => [:activemodel, :errors, :template] do |locale|
+ I18n.with_options :locale => options[:locale], :scope => [:errors, :template] do |locale|
header_message = if options.include?(:header_message)
options[:header_message]
else