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:
parent
d8fdb2bfde
commit
e5ae0debe3
2 changed files with 5 additions and 1 deletions
|
@ -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>
|
Sun Jun 30 17:05:29 2002 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
|
|
||||||
* configure.in (seekdir, telldir): add ac_cv_func_telldir=yes,
|
* configure.in (seekdir, telldir): add ac_cv_func_telldir=yes,
|
||||||
|
|
|
@ -486,7 +486,7 @@ status:
|
||||||
end
|
end
|
||||||
|
|
||||||
options.each{|key, value|
|
options.each{|key, value|
|
||||||
buf += key + ": " + value + EOL
|
buf += key + ": " + value.to_s + EOL
|
||||||
}
|
}
|
||||||
|
|
||||||
if defined?(MOD_RUBY)
|
if defined?(MOD_RUBY)
|
||||||
|
|
Loading…
Reference in a new issue