diff options
author | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-05-27 17:31:48 -0700 |
---|---|---|
committer | Yehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com> | 2009-05-27 17:31:48 -0700 |
commit | f2f58f535520bfa77ab2d0ad1fb598f18349dd2e (patch) | |
tree | 033f30d9fc685b9764afddf0b7ce9b4f7c04a6bb /actionpack/lib/action_controller | |
parent | 1e2628431a742e4f67af1d5dc1db8ad6393e8832 (diff) | |
download | rails-f2f58f535520bfa77ab2d0ad1fb598f18349dd2e.tar.gz rails-f2f58f535520bfa77ab2d0ad1fb598f18349dd2e.tar.bz2 rails-f2f58f535520bfa77ab2d0ad1fb598f18349dd2e.zip |
Fix failing ActionCacheFilter tests due to around filter changes.
Diffstat (limited to 'actionpack/lib/action_controller')
-rw-r--r-- | actionpack/lib/action_controller/caching/actions.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/caching/actions.rb b/actionpack/lib/action_controller/caching/actions.rb index 3646ff1af9..54148b55d8 100644 --- a/actionpack/lib/action_controller/caching/actions.rb +++ b/actionpack/lib/action_controller/caching/actions.rb @@ -93,7 +93,7 @@ module ActionController #:nodoc: # TODO: Remove once New Base is merged if defined?(ActionController::Http) - def around_process_action(controller) + def filter(controller) should_continue = before(controller) yield if should_continue after(controller) |