aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/partial_template.rb
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-07-03 13:06:00 -0500
committerJoshua Peek <josh@joshpeek.com>2008-07-03 13:06:00 -0500
commit8a442e0d57fabedcaf3ded836cfc12f7067ead68 (patch)
tree3ab64f7ec0bda906882531af8a76a54ef83ae282 /actionpack/lib/action_view/partial_template.rb
parent7d5c8505f528f195433693d5074a00f7635955b2 (diff)
downloadrails-8a442e0d57fabedcaf3ded836cfc12f7067ead68.tar.gz
rails-8a442e0d57fabedcaf3ded836cfc12f7067ead68.tar.bz2
rails-8a442e0d57fabedcaf3ded836cfc12f7067ead68.zip
Extracted Template rendering logic into Renderer module
Diffstat (limited to 'actionpack/lib/action_view/partial_template.rb')
-rw-r--r--actionpack/lib/action_view/partial_template.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/partial_template.rb b/actionpack/lib/action_view/partial_template.rb
index 6ebe165a15..72f831e937 100644
--- a/actionpack/lib/action_view/partial_template.rb
+++ b/actionpack/lib/action_view/partial_template.rb
@@ -18,7 +18,7 @@ module ActionView #:nodoc:
def render
ActionController::Base.benchmark("Rendered #{@path.path_without_format_and_extension}", Logger::DEBUG, false) do
- @handler.render(self)
+ super
end
end