aboutsummaryrefslogtreecommitdiffstats
path: root/railties/helpers/application.rb
diff options
context:
space:
mode:
Diffstat (limited to 'railties/helpers/application.rb')
-rw-r--r--railties/helpers/application.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/helpers/application.rb b/railties/helpers/application.rb
index 0a72bba2c9..d3d33e4f9d 100644
--- a/railties/helpers/application.rb
+++ b/railties/helpers/application.rb
@@ -5,6 +5,6 @@ class ApplicationController < ActionController::Base
helper :all # include all helpers, all the time
# See ActionController::RequestForgeryProtection for details
- # If you're using the Cookie Session Store you can leave out the :secret
- protect_from_forgery :secret => '<%= app_secret %>'
+ # Uncomment the :secret if you're not using the cookie session store
+ protect_from_forgery # :secret => '<%= app_secret %>'
end \ No newline at end of file