aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/template_handlers/builder.rb
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2008-04-24 16:58:09 +0100
committerPratik Naik <pratiknaik@gmail.com>2008-04-24 16:58:09 +0100
commit1959db324653d5db345b935c9d2696c544d836af (patch)
tree5cc858e7a41ca4ee7be4f89713d401b5fe51a206 /actionpack/lib/action_view/template_handlers/builder.rb
parenta0748848b646fdda5dd8e4c93b5bd9a0363738eb (diff)
downloadrails-1959db324653d5db345b935c9d2696c544d836af.tar.gz
rails-1959db324653d5db345b935c9d2696c544d836af.tar.bz2
rails-1959db324653d5db345b935c9d2696c544d836af.zip
Pass template object to Handler#compile
Diffstat (limited to 'actionpack/lib/action_view/template_handlers/builder.rb')
-rw-r--r--actionpack/lib/action_view/template_handlers/builder.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/template_handlers/builder.rb b/actionpack/lib/action_view/template_handlers/builder.rb
index cff9e6beb8..f76d89777a 100644
--- a/actionpack/lib/action_view/template_handlers/builder.rb
+++ b/actionpack/lib/action_view/template_handlers/builder.rb
@@ -13,7 +13,7 @@ module ActionView
content_type_handler = (@view.send!(:controller).respond_to?(:response) ? "controller.response" : "controller")
"#{content_type_handler}.content_type ||= Mime::XML\n" +
"xml = ::Builder::XmlMarkup.new(:indent => 2)\n" +
- template +
+ template.source +
"\nxml.target!\n"
end