aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorCraig Davey <me@craigdavey.ca>2010-04-09 21:01:32 -0400
committerDavid Heinemeier Hansson <david@loudthinking.com>2010-04-13 17:35:10 -0700
commit5208cc3cf5d54720512ff50c2b97e9f4369aaa27 (patch)
treef10f4ddc330fbc71fc3b3fa7a6201026b4920f59 /actionpack/CHANGELOG
parent0ab2ba336f2b094a4235b54a1b17f8bef3fe3b2b (diff)
downloadrails-5208cc3cf5d54720512ff50c2b97e9f4369aaa27.tar.gz
rails-5208cc3cf5d54720512ff50c2b97e9f4369aaa27.tar.bz2
rails-5208cc3cf5d54720512ff50c2b97e9f4369aaa27.zip
Changed translate helper so that it doesn’t mark every translation as safe HTML. Only keys with a "_html" suffix and keys named "html" are considered to be safe HTML. All other translations are left untouched.
Signed-off-by: David Heinemeier Hansson <david@loudthinking.com>
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index f221661c25..388169d981 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,3 +1,8 @@
+*Rails 3.0.0 [beta 4/release candidate] (unreleased)*
+
+* Changed translate helper so that it doesn’t mark every translation as safe HTML. Only keys with a "_html" suffix and keys named "html" are considered to be safe HTML. All other translations are left untouched. [Craig Davey]
+
+
*Rails 3.0.0 [beta 3] (April 13th, 2010)*
* New option :as added to form_for allows to change the object name. The old <% form_for :client, @post %> becomes <% form_for @post, :as => :client %> [spastorino]