aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view/base.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2008-06-02 09:12:00 -0700
committerJeremy Kemper <jeremy@bitsweat.net>2008-06-02 21:32:50 -0700
commit933697a5fc5f4c56c4fd7fbbd31b8973df9c1054 (patch)
tree44f55a5c801e94db8c3637c73dfc6db7f2c3350d /actionpack/lib/action_view/base.rb
parentda91450e687fe9faa7b0575062c2b2aacc261f68 (diff)
downloadrails-933697a5fc5f4c56c4fd7fbbd31b8973df9c1054.tar.gz
rails-933697a5fc5f4c56c4fd7fbbd31b8973df9c1054.tar.bz2
rails-933697a5fc5f4c56c4fd7fbbd31b8973df9c1054.zip
Try replacing _erbout with @output_buffer
Diffstat (limited to 'actionpack/lib/action_view/base.rb')
-rw-r--r--actionpack/lib/action_view/base.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb
index f398756550..5fae2d4dd6 100644
--- a/actionpack/lib/action_view/base.rb
+++ b/actionpack/lib/action_view/base.rb
@@ -178,10 +178,7 @@ module ActionView #:nodoc:
# that alert()s the caught exception (and then re-raises it).
@@debug_rjs = false
cattr_accessor :debug_rjs
-
- @@erb_variable = '_erbout'
- cattr_accessor :erb_variable
-
+
attr_internal :request
delegate :request_forgery_protection_token, :template, :params, :session, :cookies, :response, :headers,