mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
change call CGI methods from :: to .
Closes: https://github.com/ruby/ruby/pull/1749
This commit is contained in:
parent
8e7df4bbf9
commit
4173258fd0
7 changed files with 62 additions and 62 deletions
|
|
@ -146,7 +146,7 @@ class CGI
|
|||
buf = "#{@name}=#{val}".dup
|
||||
buf << "; domain=#{@domain}" if @domain
|
||||
buf << "; path=#{@path}" if @path
|
||||
buf << "; expires=#{CGI::rfc1123_date(@expires)}" if @expires
|
||||
buf << "; expires=#{CGI.rfc1123_date(@expires)}" if @expires
|
||||
buf << "; secure" if @secure
|
||||
buf << "; HttpOnly" if @httponly
|
||||
buf
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue