aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_view
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-03-18 21:17:14 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-03-18 21:17:14 +0000
commitcc6e8ae57a4a886d68cfa95829fcb7a65a273cab (patch)
tree8c08cf15e86164cc301472fbb86b214b10cba827 /actionpack/lib/action_view
parent3257a4b9b0081d0f86d630aeb107d8334730bb79 (diff)
downloadrails-cc6e8ae57a4a886d68cfa95829fcb7a65a273cab.tar.gz
rails-cc6e8ae57a4a886d68cfa95829fcb7a65a273cab.tar.bz2
rails-cc6e8ae57a4a886d68cfa95829fcb7a65a273cab.zip
Removed XML argument style for respond_to, so type.xml(object.to_xml) no longer works -- it wasnt worth the exception
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@3944 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/lib/action_view')
-rw-r--r--actionpack/lib/action_view/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_view/base.rb b/actionpack/lib/action_view/base.rb
index b118ee1042..dff5a365d4 100644
--- a/actionpack/lib/action_view/base.rb
+++ b/actionpack/lib/action_view/base.rb
@@ -218,7 +218,7 @@ module ActionView #:nodoc:
# it's relative to the template_root, otherwise it's absolute. The hash in <tt>local_assigns</tt>
# is made available as local variables.
def render_file(template_path, use_full_path = true, local_assigns = {})
- @first_render = template_path if @first_render.nil?
+ @first_render = template_path if @first_render.nil?
if use_full_path
template_path_without_extension, template_extension = path_and_extension(template_path)