* 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:
parent
3fe6595026
commit
51172af82b
@ -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>
|
Fri Dec 15 00:19:53 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* win32/Makefile.sub (COMPILE_RULES): latter rule has higher priority.
|
* win32/Makefile.sub (COMPILE_RULES): latter rule has higher priority.
|
||||||
|
@ -811,7 +811,7 @@ class CGI
|
|||||||
end
|
end
|
||||||
|
|
||||||
@name = options["name"]
|
@name = options["name"]
|
||||||
@value = Array(options["value"])
|
@value = Array(options["value"].lines)
|
||||||
# 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