aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/flash.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_controller/flash.rb')
-rw-r--r--actionpack/lib/action_controller/flash.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/actionpack/lib/action_controller/flash.rb b/actionpack/lib/action_controller/flash.rb
index 8877c33741..61ac33f399 100644
--- a/actionpack/lib/action_controller/flash.rb
+++ b/actionpack/lib/action_controller/flash.rb
@@ -28,11 +28,8 @@ module ActionController #:nodoc:
base.send :include, InstanceMethods
base.class_eval do
- alias_method :assign_shortcuts_without_flash, :assign_shortcuts
- alias_method :assign_shortcuts, :assign_shortcuts_with_flash
-
- alias_method :process_cleanup_without_flash, :process_cleanup
- alias_method :process_cleanup, :process_cleanup_with_flash
+ alias_method_chain :assign_shortcuts, :flash
+ alias_method_chain :process_cleanup, :flash
end
end