From 0052f41009cd0a52455779c04bb57e18cad5f9f8 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Sun, 12 Dec 2004 13:02:20 +0000 Subject: Added option to ERB templates to swallow newlines by using <% if something -%> instead of just <% if something %> git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@121 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionpack/lib') diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb index 683cb8af6f..24c33cd11d 100644 --- a/actionpack/lib/action_view/base.rb +++ b/actionpack/lib/action_view/base.rb @@ -251,7 +251,7 @@ module ActionView #:nodoc: end def rhtml_render(template, binding) - @@compiled_erb_templates[template] ||= ERB.new(template) + @@compiled_erb_templates[template] ||= ERB.new(template, nil, '-') @@compiled_erb_templates[template].result(binding) end -- cgit v1.2.3