aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/cache_helper.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-07-03 12:48:00 -0500
committerJoshua Peek <josh@joshpeek.com>2008-07-03 12:48:00 -0500
commit42d215a925a228778e43f7040f03ad8f3eb5341c (patch)
tree3fc10bd3dcad49eeb04ab70128fb1c062f5ca0de /actionpack/lib/action_view/helpers/cache_helper.rb
parent75e04b52956512d554c83e0134a81c980c15b4fa (diff)
downloadrails-42d215a925a228778e43f7040f03ad8f3eb5341c.tar.gz
rails-42d215a925a228778e43f7040f03ad8f3eb5341c.tar.bz2
rails-42d215a925a228778e43f7040f03ad8f3eb5341c.zip
Moved TemplateHandlers to Base
Diffstat (limited to 'actionpack/lib/action_view/helpers/cache_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/cache_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/cache_helper.rb b/actionpack/lib/action_view/helpers/cache_helper.rb
index 930c397785..c2aab5aa72 100644
--- a/actionpack/lib/action_view/helpers/cache_helper.rb
+++ b/actionpack/lib/action_view/helpers/cache_helper.rb
@@ -32,7 +32,7 @@ module ActionView
# <i>Topics listed alphabetically</i>
# <% end %>
def cache(name = {}, options = nil, &block)
- handler = Template.handler_class_for_extension(current_render_extension.to_sym)
+ handler = Base.handler_class_for_extension(current_render_extension.to_sym)
handler.new(@controller).cache_fragment(block, name, options)
end
end