1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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

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