aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2007-10-10 17:35:10 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2007-10-10 17:35:10 +0000
commit6637f9069c8bd819edc175cca13b667861aa3a0b (patch)
tree688b17b41ed5d886ff9e18a3ad5b9f5cdeee6184 /actionpack/CHANGELOG
parent1c881ca5bfc36689b4918edf497b38d24df7b57e (diff)
downloadrails-6637f9069c8bd819edc175cca13b667861aa3a0b.tar.gz
rails-6637f9069c8bd819edc175cca13b667861aa3a0b.tar.bz2
rails-6637f9069c8bd819edc175cca13b667861aa3a0b.zip
Extracted sanitization methods from TextHelper to SanitizeHelper [DHH] Changed SanitizeHelper#sanitize to only allow the custom attributes and tags when specified in the call [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7825 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG4
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 504eca371e..28c5556d81 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,9 @@
*SVN*
+* Changed SanitizeHelper#sanitize to only allow the custom attributes and tags when specified in the call [DHH]
+
+* Extracted sanitization methods from TextHelper to SanitizeHelper [DHH]
+
* rescue_from accepts :with => lambda { |exception| ... } or a normal block. #9827 [lifofifo]
* Add :status to redirect_to allowing users to choose their own response code without manually setting headers. #8297 [codahale, chasgrundy]