diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2011-08-20 23:27:31 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2011-08-20 23:27:31 +0530 |
commit | 7444c620cfa88d4ffade121bbbad0d4699c36f8a (patch) | |
tree | b01103f241aaa7ef4c9a8f305a1fe5557bf7d20d /railties/guides | |
parent | 8bd76aa50ec5dc5da3c398a0fd5dc971f64d8d68 (diff) | |
download | rails-7444c620cfa88d4ffade121bbbad0d4699c36f8a.tar.gz rails-7444c620cfa88d4ffade121bbbad0d4699c36f8a.tar.bz2 rails-7444c620cfa88d4ffade121bbbad0d4699c36f8a.zip |
minor change in the 3.1 release notes
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/3_1_release_notes.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/3_1_release_notes.textile b/railties/guides/source/3_1_release_notes.textile index ba36735a0b..087926f98d 100644 --- a/railties/guides/source/3_1_release_notes.textile +++ b/railties/guides/source/3_1_release_notes.textile @@ -115,7 +115,7 @@ h4. Action Controller * URL parameters which return +nil+ for +to_param+ are now removed from the query string. -* Added <tt>ActionController::ParamsWrapper</tt> to wrap parameters into a nested hash, and will be turned on for JSON request in new applications by default. This can be customized by setting <tt>ActionController::Base.wrap_parameters</tt> in <tt>config/initializer/wrap_parameters.rb</tt>. +* Added <tt>ActionController::ParamsWrapper</tt> to wrap parameters into a nested hash, and will be turned on for JSON request in new applications by default. This can be customized in <tt>config/initializers/wrap_parameters.rb</tt>. * Added <tt>config.action_controller.include_all_helpers</tt>. By default <tt>helper :all</tt> is done in <tt>ActionController::Base</tt>, which includes all the helpers by default. Setting +include_all_helpers+ to +false+ will result in including only application_helper and the helper corresponding to controller (like foo_helper for foo_controller). |