From: Tom Hughes Date: Tue, 6 Aug 2013 20:36:54 +0000 (+0100) Subject: Always allow %{attribute} in model validation error messages X-Git-Tag: live~4718 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/90875bb08a63061f926228e14327286297c51ed2 Always allow %{attribute} in model validation error messages --- diff --git a/test/unit/i18n_test.rb b/test/unit/i18n_test.rb index c1dacbff2..2fb13824c 100644 --- a/test/unit/i18n_test.rb +++ b/test/unit/i18n_test.rb @@ -24,6 +24,10 @@ class I18nTest < ActiveSupport::TestCase end end + if key =~ /^(active(model|record)\.)?errors\./ + variables.push("attribute") + end + value = I18n.t(key, :locale => locale, :fallback => true) if value.is_a?(Hash)