diff options
-rw-r--r-- | railties/helpers/application.rb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/railties/helpers/application.rb b/railties/helpers/application.rb index 99e4b0d1cf..3bef7f583e 100644 --- a/railties/helpers/application.rb +++ b/railties/helpers/application.rb @@ -2,9 +2,6 @@ # Likewise, all the methods added will be available for all controllers. class ApplicationController < ActionController::Base - # Pick a unique cookie name to distinguish our session data from others'. + # Pick a unique cookie name to distinguish our session data from others' session :session_key => '_<%= app_name %>_session_id' - - # Or disable sessions entirely. - #session :off end |