* lib/cgi.rb (CGI#header): accept any type as value.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2616 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
wakou 2002-07-02 14:19:51 +00:00
Родитель d8fdb2bfde
Коммит e5ae0debe3
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Tue Jul 2 14:13:11 2002 Wakou Aoyama <wakou@ruby-lang.org>
* lib/cgi.rb (CGI#header): accept any type as value.
Sun Jun 30 17:05:29 2002 WATANABE Hirofumi <eban@ruby-lang.org>
* configure.in (seekdir, telldir): add ac_cv_func_telldir=yes,

Просмотреть файл

@ -486,7 +486,7 @@ status:
end
options.each{|key, value|
buf += key + ": " + value + EOL
buf += key + ": " + value.to_s + EOL
}
if defined?(MOD_RUBY)