diff --git a/actionpack/lib/action_controller/base.rb b/actionpack/lib/action_controller/base.rb index 1892bc7231..ea9b54dac9 100755 --- a/actionpack/lib/action_controller/base.rb +++ b/actionpack/lib/action_controller/base.rb @@ -869,7 +869,7 @@ module ActionController #:nodoc: response.body ||= '' response.body << text.to_s else - response.body = text.to_s + response.body = text.is_a?(Proc) ? text : text.to_s end end