1
0
Fork 0
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:
Semyon Pupkov 2017-11-13 14:48:29 +05:00 committed by Hiroshi SHIBATA
parent 8e7df4bbf9
commit 4173258fd0
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2
7 changed files with 62 additions and 62 deletions

View file

@ -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