end
def to_html(format, text, options = {}, &block)
- text = if Setting.cache_formatted_text? && text.size > 2.kilobyte && cache && cache_key = cache_key_for(format, options[:object], options[:attribute])
+ text = if Setting.cache_formatted_text? && text.size > 2.kilobyte && cache_store && cache_key = cache_key_for(format, options[:object], options[:attribute])
# Text retrieved from the cache store may be frozen
# We need to dup it so we can do in-place substitutions with gsub!
- cache.fetch cache_key do
+ cache_store.fetch cache_key do
formatter_for(format).new(text).to_html
end.dup
else
end
# Returns the cache store used to cache HTML output
- def cache
+ def cache_store
ActionController::Base.cache_store
end