Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 4499

Show
Ignore:
Timestamp:
06/28/06 13:51:25 (2 years ago)
Author:
marcel
Message:

Fix CGI extensions when they expect string but get nil in Windows. Closes #5276 [mislav@nippur.irb.hr]

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/CHANGELOG

    r4474 r4499  
    11*SVN* 
     2 
     3* Fix CGI extensions when they expect string but get nil in Windows. Closes #5276 [mislav@nippur.irb.hr] 
    24 
    35* 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  
    3737          @multipart = true 
    3838          @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' 
    4040          read_params(method, content_length) 
    4141          @params = {}