* 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:
parent
eb7b81158a
commit
3d519d2d60
@ -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>
|
Wed Dec 20 12:54:31 2006 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* Convert CVS repository to Subversion repository.
|
* Convert CVS repository to Subversion repository.
|
||||||
|
@ -811,7 +811,7 @@ class CGI
|
|||||||
end
|
end
|
||||||
|
|
||||||
@name = options["name"]
|
@name = options["name"]
|
||||||
@value = Array(options["value"].lines)
|
@value = *options["value"]
|
||||||
# simple support for IE
|
# simple support for IE
|
||||||
if options["path"]
|
if options["path"]
|
||||||
@path = options["path"]
|
@path = options["path"]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user