diff options
author | Joshua Peek <josh@joshpeek.com> | 2008-07-03 12:50:43 -0500 |
---|---|---|
committer | Joshua Peek <josh@joshpeek.com> | 2008-07-03 12:50:43 -0500 |
commit | 7d5c8505f528f195433693d5074a00f7635955b2 (patch) | |
tree | 179542b9f7f368e52c74e4a7645c689b5fc4e642 | |
parent | b6f89a8bf59a0e6227c054d0be49baedf7b9f530 (diff) | |
download | rails-7d5c8505f528f195433693d5074a00f7635955b2.tar.gz rails-7d5c8505f528f195433693d5074a00f7635955b2.tar.bz2 rails-7d5c8505f528f195433693d5074a00f7635955b2.zip |
Use render on InlineTemplate
-rw-r--r-- | actionpack/lib/action_view/base.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb index 169bee1bfc..d4802d7965 100644 --- a/actionpack/lib/action_view/base.rb +++ b/actionpack/lib/action_view/base.rb @@ -305,7 +305,7 @@ module ActionView #:nodoc: end def render_inline(text, local_assigns = {}, type = nil) - InlineTemplate.new(self, text, local_assigns, type).render_template + InlineTemplate.new(self, text, local_assigns, type).render end def wrap_content_for_layout(content) |