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): option["value"] may or may

not be string.  [ruby-core:09750]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11413 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2006-12-21 16:36:31 +00:00
parent eb7b81158a
commit 3d519d2d60
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Thu Dec 21 15:32:19 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* lib/cgi.rb (CGI::Cookie::initialize): option["value"] may or may
not be string. [ruby-core:09750]
Wed Dec 20 12:54:31 2006 Koichi Sasada <ko1@atdot.net>
* Convert CVS repository to Subversion repository.

View file

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