aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2004-11-26 01:09:59 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2004-11-26 01:09:59 +0000
commitbd5985331c701f501bdef859204f6fabc279e87a (patch)
tree658dd064e4fc912d1c2dc81adeec50b4a7bb7066 /actionpack/CHANGELOG
parente15b371777b72b6f2e71f27c5d55768083c87996 (diff)
downloadrails-bd5985331c701f501bdef859204f6fabc279e87a.tar.gz
rails-bd5985331c701f501bdef859204f6fabc279e87a.tar.bz2
rails-bd5985331c701f501bdef859204f6fabc279e87a.zip
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!
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@18 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG3
1 files changed, 3 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 77cb4ee6f1..ead5e189ff 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,8 @@
*SVN*
+* 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!
+
* Added the opportunity to defined method_missing on a controller which will handle all requests for actions not otherwise defined #223 [timb]
* Fixed AbstractRequest#remote_ip for users going through proxies - Patch #228 [Eric Hodel]