Changeset 4522
- Timestamp:
- 06/30/06 05:19:15 (2 years ago)
- Files:
-
- trunk/actionpack/CHANGELOG (modified) (1 diff)
- trunk/actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/actionpack/CHANGELOG
r4518 r4522 1 1 *SVN* 2 3 * 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] 2 4 3 5 * Add route_name_path method to generate only the path for a named routes. For example, map.person will add person_path. [Nicholas Seckar] trunk/actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb
r4499 r4522 37 37 @multipart = true 38 38 @params = read_multipart(boundary, content_length) 39 elsif content_type.blank? || content_type.downcase ! = 'application/x-www-form-urlencoded'39 elsif content_type.blank? || content_type.downcase !~ %r{^application/x-www-form-urlencoded.*} 40 40 read_params(method, content_length) 41 41 @params = {}