aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2007-09-28 16:50:48 +0000
committerRick Olson <technoweenie@gmail.com>2007-09-28 16:50:48 +0000
commit82ff27766d3edc3fb1d0d043841e9c3cd277744f (patch)
tree7854659c7ec3f0ae5b87a8d1068f92a8fb40775c /railties/lib
parentc1bdf027d8d54127e41427e21fabe7ff3e26c6bc (diff)
downloadrails-82ff27766d3edc3fb1d0d043841e9c3cd277744f.tar.gz
rails-82ff27766d3edc3fb1d0d043841e9c3cd277744f.tar.bz2
rails-82ff27766d3edc3fb1d0d043841e9c3cd277744f.zip
Better error messages if you leave out the :secret option for request forgery protection. Closes #9670 [rick]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@7671 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/rails_generator/generators/applications/app/app_generator.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails_generator/generators/applications/app/app_generator.rb b/railties/lib/rails_generator/generators/applications/app/app_generator.rb
index 9e0759a2b5..e78286495c 100644
--- a/railties/lib/rails_generator/generators/applications/app/app_generator.rb
+++ b/railties/lib/rails_generator/generators/applications/app/app_generator.rb
@@ -43,7 +43,7 @@ class AppGenerator < Rails::Generator::Base
m.file "README", "README"
# Application
- m.template "helpers/application.rb", "app/controllers/application.rb", :assigns => { :app_name => @app_name }
+ m.template "helpers/application.rb", "app/controllers/application.rb", :assigns => { :app_name => @app_name, :app_secret => md5.hexdigest }
m.template "helpers/application_helper.rb", "app/helpers/application_helper.rb"
m.template "helpers/test_helper.rb", "test/test_helper.rb"