diff options
author | Rick Olson <technoweenie@gmail.com> | 2007-09-28 16:50:48 +0000 |
---|---|---|
committer | Rick Olson <technoweenie@gmail.com> | 2007-09-28 16:50:48 +0000 |
commit | 82ff27766d3edc3fb1d0d043841e9c3cd277744f (patch) | |
tree | 7854659c7ec3f0ae5b87a8d1068f92a8fb40775c /railties/lib | |
parent | c1bdf027d8d54127e41427e21fabe7ff3e26c6bc (diff) | |
download | rails-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.rb | 2 |
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" |