Skip to content

Commit

Permalink
Fixed that an exception would be thrown when an empty form was submit…
Browse files Browse the repository at this point in the history
…ted #1090 [jan@ulbrich-boerwang.de]

git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1152 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
dhh committed Apr 13, 2005
1 parent 988dc1e commit bf1bcff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions actionpack/CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
*SVN*

* Fixed that an exception would be thrown when an empty form was submitted #1090 [jan@ulbrich-boerwang.de]

* Moved TextHelper#human_size to NumberHelper#number_to_human_size, but kept an deprecated alias to the old method name

* Fixed that the content-type for some browsers could include an additional \r which made wonky things happen #1067 [Thomas Fuchs]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def initialize_query()
@params = read_multipart(boundary, Integer(env_table['CONTENT_LENGTH']))
else
@multipart = false
@params = CGI::parse(read_query_params)
@params = CGI::parse(read_query_params || "")
end

@cookies = CGI::Cookie::parse((env_table['HTTP_COOKIE'] || env_table['COOKIE']))
Expand Down

0 comments on commit bf1bcff

Please sign in to comment.