mirror of
https://github.com/github/rails.git
synced 2026-02-05 03:35:14 -05:00
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@26 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -36,7 +36,7 @@ module ActionController #:nodoc:
|
||||
# Returns the value of the cookie by +name+ -- or nil if no such cookie exist. You set new cookies using either the cookie method
|
||||
# or cookies[]= (for simple name/value cookies without options).
|
||||
def [](name)
|
||||
@cookies[name.to_s].value if @cookies.is_a?(Hash) && @cookies[name.to_s]
|
||||
@cookies[name.to_s].value if @cookies[name.to_s] && @cookies[name.to_s].respond_to?(:value)
|
||||
end
|
||||
|
||||
def []=(name, options)
|
||||
|
||||
Reference in New Issue
Block a user