I’ve upgrades from Rails 1.2.6 to 2.0.2 (it’s about time) and am
getting render problems on the .xml files.
What I get is the XML layout with the HTML contents:
The layout is:
xml.instruct! :xml, :version=>“1.0”, :encoding=>“UTF-8”
xml.info do
xml.status(@status, :err_code=>@err_code || 0)
res = @content_for_layout
if res
xml << @content_for_layout
end
end
And, in the controller, I have:
respond_to do |format|
format.html do
redirect_after_login(@status)
end
format.xml
end
The contents of the .rxml file just doesn’t go out. What comes out as
@content_for_layout is what’s in the .rhtml file. I’m calling /
login.xml
What’s changed?
Thanks,
Amir