aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2007-01-01 01:13:09 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2007-01-01 01:13:09 +0000
commit0f048a5c9867b2e991ad540222c8d8188f5a24fc (patch)
treebbd84a7c93e344975531ca5a91e27c11ddaff552 /actionpack/CHANGELOG
parent0a06ffc08e918383e4bc81eaa68b512d763e97be (diff)
downloadrails-0f048a5c9867b2e991ad540222c8d8188f5a24fc.tar.gz
rails-0f048a5c9867b2e991ad540222c8d8188f5a24fc.tar.bz2
rails-0f048a5c9867b2e991ad540222c8d8188f5a24fc.zip
Set session to an empty hash if :new_session => false and no session cookie or param is present. CGI::Session was raising an unrescued ArgumentError.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5820 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index f303154f31..edc28f2027 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Set session to an empty hash if :new_session => false and no session cookie or param is present. CGI::Session was raising an unrescued ArgumentError. [Josh Susser]
+
* Routing uses URI escaping for path components and CGI escaping for query parameters. [darix, Jeremy Kemper]
* Fix assert_redirected_to bug where redirecting from a nested to to a top-level controller incorrectly added the current controller's nesting. Closes #6128. [Rick Olson]