diff options
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_controller/base.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index bd10daee30..48308cbb60 100644 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -93,9 +93,9 @@ module ActionController # * ActiveRecord::SessionStore - Sessions are stored in your database, which works better than PStore with multiple app servers and, # unlike CookieStore, hides your session contents from the user. To use ActiveRecord::SessionStore, set # - # config.action_controller.session_store = :active_record_store + # MyApplication::Application.config.session_store :active_record_store # - # in your <tt>config/environment.rb</tt> and run <tt>script/rails g session_migration</tt>. + # in your <tt>config/initializers/session_store.rb</tt> and run <tt>script/rails g session_migration</tt>. # # == Responses # |