removing key argument from run_callbacks - fix build

This commit is contained in:
Francesco Rodriguez 2012-05-10 02:56:36 -05:00
parent a45a5d88e4
commit e471aacf60
1 changed files with 1 additions and 1 deletions

View File

@ -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