diff options
-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 <[email protected]> + + * lib/webrick/httpservley/cgihandler.rb + (WEBrick::HTTPServlet::CGIHandler#do_GET): m17nized. + Mon Dec 24 23:55:29 2007 Tanaka Akira <[email protected]> * 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? |