aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2007-01-04 21:18:13 +0000
committerRick Olson <technoweenie@gmail.com>2007-01-04 21:18:13 +0000
commit05aa57bc8439d5fa769cb8a486233c455f93857c (patch)
tree7291cfc42efe56dbbac0925bb09fd314762ea32f /actionpack/CHANGELOG
parent1af2022cc32b604529a5ac3a85a3bd92a3c42936 (diff)
downloadrails-05aa57bc8439d5fa769cb8a486233c455f93857c.tar.gz
rails-05aa57bc8439d5fa769cb8a486233c455f93857c.tar.bz2
rails-05aa57bc8439d5fa769cb8a486233c455f93857c.zip
Allow ActionController::Base.session_store to lazily load the session class to allow for custom session store plugins. [Rick Olson]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5833 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 76c0f38604..2e248e944b 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Allow ActionController::Base.session_store to lazily load the session class to allow for custom session store plugins. [Rick Olson]
+
* Make sure html_document is reset between integration test requests. [ctm]
* 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]