1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
parent d8fdb2bfde
commit e5ae0debe3
2 changed files with 5 additions and 1 deletions

View file

@ -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,

View file

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