diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-06-30 05:19:15 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-06-30 05:19:15 +0000 |
commit | bdac94e990162d711529922cf32adca2f0836905 (patch) | |
tree | 33be4fcd61bfc0a53c1988b0b2189108e4c65aea /actionpack/CHANGELOG | |
parent | 6a1a1e55364168a2de981fdd3aae83d9614b72e2 (diff) | |
download | rails-bdac94e990162d711529922cf32adca2f0836905.tar.gz rails-bdac94e990162d711529922cf32adca2f0836905.tar.bz2 rails-bdac94e990162d711529922cf32adca2f0836905.zip |
Fixed proper form-encoded parameter parsing for requests with "Content-Type: application/x-www-form-urlencoded; charset=utf-8" (note the presence of a charset directive) [DHH]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4522 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index 4a63ba47d7..8ae50f09be 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Fixed proper form-encoded parameter parsing for requests with "Content-Type: application/x-www-form-urlencoded; charset=utf-8" (note the presence of a charset directive) [DHH] + * Add route_name_path method to generate only the path for a named routes. For example, map.person will add person_path. [Nicholas Seckar] * Avoid naming collision among compiled view methods. [Jeremy Kemper] |