diff options
| -rw-r--r-- | actionpack/CHANGELOG | 2 | ||||
| -rwxr-xr-x | actionpack/lib/action_controller/base.rb | 4 | 
2 files changed, 4 insertions, 2 deletions
| diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG index a5150cee7f..9d30f9b6a4 100644 --- a/actionpack/CHANGELOG +++ b/actionpack/CHANGELOG @@ -1,5 +1,7 @@  *SVN* +* Pass along blocks from render_to_string to render. [Sam Stephenson] +  * Add render :update for inline RJS. [Sam Stephenson]  Example:    class UserController < ApplicationController      def refresh diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index 40fa24a696..8a34cd18cf 100755 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -644,8 +644,8 @@ module ActionController #:nodoc:        # Renders according to the same rules as <tt>render</tt>, but returns the result in a string instead        # of sending it as the response body to the browser. -      def render_to_string(options = nil) #:doc: -        result = render(options) +      def render_to_string(options = nil, &block) #:doc: +        result = render(options, &block)          erase_render_results          @variables_added = nil          @template.instance_variable_set("@assigns_added", nil) | 
