diff options
| author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 15:30:02 +0000 |
|---|---|---|
| committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-24 15:30:02 +0000 |
| commit | 6c9d911423caeb6823dd46ba56072db81beab02b (patch) | |
| tree | 9bc1e8f4231c1a45b291c028d2a88802c9931d05 | |
| parent | 71787f8ec2704a0559a8de8e91054f31e8444b3b (diff) | |
* lib/webrick/httpservley/cgihandler.rb
(WEBrick::HTTPServlet::CGIHandler#do_GET): m17nized.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | lib/webrick/httpservlet/cgihandler.rb | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +Tue Dec 25 00:27:28 2007 GOTOU Yuuzou <gotoyuzo@notwork.org> + + * lib/webrick/httpservley/cgihandler.rb + (WEBrick::HTTPServlet::CGIHandler#do_GET): m17nized. + Mon Dec 24 23:55:29 2007 Tanaka Akira <akr@fsij.org> * lib/cgi.rb (CGI::escape): m17nized. diff --git a/lib/webrick/httpservlet/cgihandler.rb b/lib/webrick/httpservlet/cgihandler.rb index 214724f251..c6583c5a33 100644 --- a/lib/webrick/httpservlet/cgihandler.rb +++ b/lib/webrick/httpservlet/cgihandler.rb @@ -75,7 +75,7 @@ module WEBrick end data = "" unless data - raw_header, body = data.split(/^[\xd\xa]+/on, 2) + raw_header, body = data.split(/^[\xd\xa]+/, 2) raise HTTPStatus::InternalServerError, "Premature end of script headers: #{@script_filename}" if body.nil? |
