diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-08-17 17:06:52 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-08-17 17:06:52 +0000 |
| commit | 583de7951baf7fb0546ef56ecf5e3d9dc0c9099d (patch) | |
| tree | badb198468891a5f3e65455503a27c39591aeb8d /lib | |
| parent | ba6f9a77f11c7dc9e010c82a9e7f4f7f96730aba (diff) | |
| download | ruby-583de7951baf7fb0546ef56ecf5e3d9dc0c9099d.tar.gz ruby-583de7951baf7fb0546ef56ecf5e3d9dc0c9099d.tar.xz ruby-583de7951baf7fb0546ef56ecf5e3d9dc0c9099d.zip | |
* lib/cgi.rb (CGI::out): specify -m0 to disable MIME decode. a
patch from Fujioka <fuj at rabbix.jp>. [ruby-dev:29284]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@10746 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/cgi.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/cgi.rb b/lib/cgi.rb index 4308efcb6..4cd497849 100644 --- a/lib/cgi.rb +++ b/lib/cgi.rb @@ -718,16 +718,16 @@ class CGI require "nkf" case options["charset"] when /iso-2022-jp/ni - content = NKF::nkf('-j', content) + content = NKF::nkf('-j -m0', content) options["language"] = "ja" unless options.has_key?("language") when /euc-jp/ni - content = NKF::nkf('-e', content) + content = NKF::nkf('-e -m0', content) options["language"] = "ja" unless options.has_key?("language") when /shift_jis/ni - content = NKF::nkf('-s', content) + content = NKF::nkf('-s -m0', content) options["language"] = "ja" unless options.has_key?("language") when /utf-8/ni - content = NKF::nkf('-w', content) + content = NKF::nkf('-w -m0', content) end end |
