From 91ff8352a4e5126b934d1b26988fa228fe13495f Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 20 Jan 2005 14:12:53 +0000 Subject: Fixed that a default fragment store wan't being set to MemoryStore as intended git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@461 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_controller/caching.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actionpack/lib/action_controller/caching.rb b/actionpack/lib/action_controller/caching.rb index 13dbf9e3d4..cc80217bd6 100644 --- a/actionpack/lib/action_controller/caching.rb +++ b/actionpack/lib/action_controller/caching.rb @@ -241,7 +241,7 @@ module ActionController #:nodoc: def self.append_features(base) #:nodoc: super base.class_eval do - @@cache_store = MemoryStore.new + @@fragment_cache_store = MemoryStore.new cattr_accessor :fragment_cache_store end end -- cgit v1.2.3