diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-02-04 06:11:42 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-02-04 06:11:42 +0000 |
commit | ed080863d5783b09cdc7aa397d3622e9b2eefc82 (patch) | |
tree | a9482c69c04223362124b96014c8428c5204fa84 /actionpack | |
parent | a6a683b0bb7c6019ed38b5d1bba1dac4594dc5da (diff) | |
download | rails-ed080863d5783b09cdc7aa397d3622e9b2eefc82.tar.gz rails-ed080863d5783b09cdc7aa397d3622e9b2eefc82.tar.bz2 rails-ed080863d5783b09cdc7aa397d3622e9b2eefc82.zip |
Just go with Subclasses instead of OnlySubclasses
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3533 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_controller/caching.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb index 4c1c6e6679..dda54459ed 100644 --- a/actionpack/lib/action_controller/caching.rb +++ b/actionpack/lib/action_controller/caching.rb @@ -523,7 +523,7 @@ module ActionController #:nodoc: # ActiveRecord::Observer will mark this class as reloadable even though it should not be. # However, subclasses of ActionController::Caching::Sweeper should be Reloadable - include Reloadable::OnlySubclasses + include Reloadable::Subclasses def before(controller) self.controller = controller |