diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2004-11-26 01:12:46 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2004-11-26 01:12:46 +0000 |
commit | b62937acbd5c14d6499f4e45f4b821043a826044 (patch) | |
tree | 5c68ac26b66a29dbf18c62b11a97f7aec5499f47 /actionpack/CHANGELOG | |
parent | bd5985331c701f501bdef859204f6fabc279e87a (diff) | |
download | rails-b62937acbd5c14d6499f4e45f4b821043a826044.tar.gz rails-b62937acbd5c14d6499f4e45f4b821043a826044.tar.bz2 rails-b62937acbd5c14d6499f4e45f4b821043a826044.zip |
Added ActionController#cookies[]= as an alias for cookie "name", "value" -- youll still need to use the latter if you have options to set.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@19 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r-- | actionpack/CHANGELOG | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index ead5e189ff..87280683fc 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Added ActionController#cookies[]= as an alias for cookie "name", "value" -- you'll still need to use the latter if you have options to set. + * Added ActionController#cookies[] as a reader for @cookies that'll return the value of the cookie instead of the cookie object itself. NOTE: If you were using the old accessor, this could potentially break your code -- if you expect a full cookie object! |