aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/helpers/capture_helper.rb
diff options
context:
space:
mode:
authorSantiago Pastorino <santiago@wyeworks.com>2010-02-01 04:12:01 -0200
committerYehuda Katz <wycats@Yehuda-Katz.local>2010-01-31 22:14:18 -0800
commit1adfb9213576bd4a548a66bb46e2a2272e15e48d (patch)
tree6bd8fdaee3a24042df3cddbe4ae734a5109f7680 /actionpack/lib/action_view/helpers/capture_helper.rb
parent9987a0073829d4ba91585913967cdebe5cc706e4 (diff)
downloadrails-1adfb9213576bd4a548a66bb46e2a2272e15e48d.tar.gz
rails-1adfb9213576bd4a548a66bb46e2a2272e15e48d.tar.bz2
rails-1adfb9213576bd4a548a66bb46e2a2272e15e48d.zip
Deleted all references to ActionView::SafeBuffer in favor of ActiveSupport::SafeBuffer
Signed-off-by: Yehuda Katz <wycats@Yehuda-Katz.local>
Diffstat (limited to 'actionpack/lib/action_view/helpers/capture_helper.rb')
-rw-r--r--actionpack/lib/action_view/helpers/capture_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/helpers/capture_helper.rb b/actionpack/lib/action_view/helpers/capture_helper.rb
index b62df75dbb..8c48300ed3 100644
--- a/actionpack/lib/action_view/helpers/capture_helper.rb
+++ b/actionpack/lib/action_view/helpers/capture_helper.rb
@@ -143,7 +143,7 @@ module ActionView
# Defaults to a new empty string.
def with_output_buffer(buf = nil) #:nodoc:
unless buf
- buf = ActionView::SafeBuffer.new
+ buf = ActiveSupport::SafeBuffer.new
buf.force_encoding(output_buffer.encoding) if buf.respond_to?(:force_encoding)
end
self.output_buffer, old_buffer = buf, output_buffer