aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2011-08-20 11:38:45 -0700
committerSantiago Pastorino <santiago@wyeworks.com>2011-08-20 11:38:45 -0700
commit9ca44e36d364dc487aa1b8773db62e6c2557838f (patch)
treeb01103f241aaa7ef4c9a8f305a1fe5557bf7d20d
parent8bd76aa50ec5dc5da3c398a0fd5dc971f64d8d68 (diff)
parent7444c620cfa88d4ffade121bbbad0d4699c36f8a (diff)
downloadrails-9ca44e36d364dc487aa1b8773db62e6c2557838f.tar.gz
rails-9ca44e36d364dc487aa1b8773db62e6c2557838f.tar.bz2
rails-9ca44e36d364dc487aa1b8773db62e6c2557838f.zip
Merge pull request #2603 from vijaydev/guides
Minor change in the 3.1 release notes
-rw-r--r--railties/guides/source/3_1_release_notes.textile2
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).