aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/renderer/partial_renderer.rb
diff options
context:
space:
mode:
Diffstat (limited to 'actionpack/lib/action_view/renderer/partial_renderer.rb')
-rw-r--r--actionpack/lib/action_view/renderer/partial_renderer.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/actionpack/lib/action_view/renderer/partial_renderer.rb b/actionpack/lib/action_view/renderer/partial_renderer.rb
index 3be1702f9e..eff425687b 100644
--- a/actionpack/lib/action_view/renderer/partial_renderer.rb
+++ b/actionpack/lib/action_view/renderer/partial_renderer.rb
@@ -2,7 +2,6 @@ require 'action_view/renderer/abstract_renderer'
module ActionView
class PartialRenderer < AbstractRenderer #:nodoc:
- N = ::ActiveSupport::Notifications
PARTIAL_NAMES = Hash.new {|h,k| h[k] = {} }
def initialize(view)
@@ -46,11 +45,11 @@ module ActionView
identifier = ((@template = find_partial) ? @template.identifier : @path)
if @collection
- N.instrument("render_collection.action_view", :identifier => identifier || "collection", :count => @collection.size) do
+ instrument(:collection, :identifier => identifier || "collection", :count => @collection.size) do
render_collection
end
else
- N.instrument("render_partial.action_view", :identifier => identifier) do
+ instrument(:partial, :identifier => identifier) do
render_partial
end
end
@@ -83,7 +82,7 @@ module ActionView
view._layout_for(*name, &block)
end
- content = render_layout(layout, locals){ content } if layout
+ content = layout.render(view, locals){ content } if layout
content
end