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::Cookie::initialize): Array(string) no longer

works.  [ruby-core:09738]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11401 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2006-12-17 23:37:49 +00:00
parent 3fe6595026
commit 51172af82b
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Mon Dec 18 08:36:29 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/cgi.rb (CGI::Cookie::initialize): Array(string) no longer
works. [ruby-core:09738]
Fri Dec 15 00:19:53 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* win32/Makefile.sub (COMPILE_RULES): latter rule has higher priority.

View file

@ -811,7 +811,7 @@ class CGI
end
@name = options["name"]
@value = Array(options["value"])
@value = Array(options["value"].lines)
# simple support for IE
if options["path"]
@path = options["path"]