aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2010-11-26 14:16:57 +1100
committerRyan Bigg <radarlistener@gmail.com>2010-11-26 14:16:57 +1100
commit33298d8e38eab9ef2e528478fbd2d4585f732d82 (patch)
treee4d445d31a57eb9f7d0d404a9d92aa312db51b33 /railties
parent9a4d6724573470d74ef9ef4572dbe04a1b5d9b4a (diff)
downloadrails-33298d8e38eab9ef2e528478fbd2d4585f732d82.tar.gz
rails-33298d8e38eab9ef2e528478fbd2d4585f732d82.tar.bz2
rails-33298d8e38eab9ef2e528478fbd2d4585f732d82.zip
There is no config.action_controller.params_parser method for Rails 3. This is now handled by the ActionDispatch::ParamsParser middleware.
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/configuring.textile2
1 files changed, 0 insertions, 2 deletions
diff --git a/railties/guides/source/configuring.textile b/railties/guides/source/configuring.textile
index e614d232fe..03a360f87f 100644
--- a/railties/guides/source/configuring.textile
+++ b/railties/guides/source/configuring.textile
@@ -121,8 +121,6 @@ h4. Configuring Action Controller
WARNING: Threadsafe operation is incompatible with the normal workings of development mode Rails. In particular, automatic dependency loading and class reloading are automatically disabled when you call +config.threadsafe!+.
-* +config.action_controller.param_parsers+ provides an array of handlers that can extract information from incoming HTTP requests and add it to the +params+ hash. By default, parsers for multipart forms, URL-encoded forms, XML, and JSON are active.
-
* +config.action_controller.default_charset+ specifies the default character set for all renders. The default is "utf-8".
* +config.action_controller.logger+ accepts a logger conforming to the interface of Log4r or the default Ruby 1.8+ Logger class, which is then used to log information from Action Controller. Set to nil to disable logging.