summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-17 16:25:21 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-08-17 16:25:21 +0000
commit91b1bb609ece3df1f6e2b4fc6172b87bb8b55284 (patch)
tree211a7abd832db186c377253ce94b8503cf301b8d /lib
parent6668308e69fad3f9ddc666964380f253bbe5ab7a (diff)
* 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: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10743 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/cgi.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/cgi.rb b/lib/cgi.rb
index 8ea9c3def0..0878edffa4 100644
--- a/lib/cgi.rb
+++ b/lib/cgi.rb
@@ -708,16 +708,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