diff options
author | xibbar <xibbar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-10-17 17:33:57 +0000 |
---|---|---|
committer | xibbar <xibbar@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-10-17 17:33:57 +0000 |
commit | 673448c27d46e84a49dacc2ce2a7f10a041f39b9 (patch) | |
tree | 0e81617d3165d27a301cf171fb7aa722de6e8052 /lib/cgi/core.rb | |
parent | 4db3466357f3a6d89aac94a24c31de6aa99e89a8 (diff) |
Tue Oct 18 02:24:19 2011 Takeyuki FUJIOKA <[email protected]>
* lib/cgi/core.rb (QueryExtension#read_multiparat): replace 'stdinput'
from '$stdin' because using fast cgi. [Bug #5451]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33472 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/cgi/core.rb')
-rw-r--r-- | lib/cgi/core.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/cgi/core.rb b/lib/cgi/core.rb index 824c80e5a0..e961b16474 100644 --- a/lib/cgi/core.rb +++ b/lib/cgi/core.rb @@ -462,7 +462,7 @@ class CGI # def read_multipart(boundary, content_length) ## read first boundary - stdin = $stdin + stdin = stdinput first_line = "--#{boundary}#{EOL}" content_length -= first_line.bytesize status = stdin.read(first_line.bytesize) |