Changeset 4499
- Timestamp:
- 06/28/06 13:51:25 (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
r4474 r4499 1 1 *SVN* 2 3 * Fix CGI extensions when they expect string but get nil in Windows. Closes #5276 [mislav@nippur.irb.hr] 2 4 3 5 * Determine the correct template_root for deeply nested components. #2841 [s.brink@web.de] trunk/actionpack/lib/action_controller/cgi_ext/raw_post_data_fix.rb
r4388 r4499 37 37 @multipart = true 38 38 @params = read_multipart(boundary, content_length) 39 elsif content_type. downcase != 'application/x-www-form-urlencoded'39 elsif content_type.blank? || content_type.downcase != 'application/x-www-form-urlencoded' 40 40 read_params(method, content_length) 41 41 @params = {}