aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/new_base
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-05-01 16:01:37 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-05-01 17:31:02 -0700
commitb4903a8e34da77b96ea136ccd015c1634a8a5c2b (patch)
tree0840acef5a6d19b397a2c2e085a2329402850914 /actionpack/lib/action_controller/new_base
parent69fd66916566f402620cc385689c36f61deb6ba1 (diff)
downloadrails-b4903a8e34da77b96ea136ccd015c1634a8a5c2b.tar.gz
rails-b4903a8e34da77b96ea136ccd015c1634a8a5c2b.tar.bz2
rails-b4903a8e34da77b96ea136ccd015c1634a8a5c2b.zip
Modify new_base to use String action_names for back-compat
Diffstat (limited to 'actionpack/lib/action_controller/new_base')
-rw-r--r--actionpack/lib/action_controller/new_base/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/new_base/base.rb b/actionpack/lib/action_controller/new_base/base.rb
index 00d161289e..f663900944 100644
--- a/actionpack/lib/action_controller/new_base/base.rb
+++ b/actionpack/lib/action_controller/new_base/base.rb
@@ -42,7 +42,7 @@ module ActionController
def call(env)
@_request = ActionDispatch::Request.new(env)
@_response = ActionDispatch::Response.new
- process(@_request.parameters[:action].to_sym)
+ process(@_request.parameters[:action])
@_response.body = response_body
@_response.prepare!
self