From e471aacf60f36a6f3074eebe32216b8c55c02434 Mon Sep 17 00:00:00 2001 From: Francesco Rodriguez Date: Thu, 10 May 2012 02:56:36 -0500 Subject: [PATCH] removing key argument from run_callbacks - fix build --- actionpack/lib/abstract_controller/callbacks.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionpack/lib/abstract_controller/callbacks.rb b/actionpack/lib/abstract_controller/callbacks.rb index 520c2107213..5705ab590c2 100644 --- a/actionpack/lib/abstract_controller/callbacks.rb +++ b/actionpack/lib/abstract_controller/callbacks.rb @@ -14,7 +14,7 @@ module AbstractController # Override AbstractController::Base's process_action to run the # process_action callbacks around the normal behavior. def process_action(*args) - run_callbacks(:process_action, action_name) do + run_callbacks(:process_action) do super end end