This solution addresses the way IE constructs its http request accept header which accepts any MIME type you may be serving so the first one available will be accepted which is not necessarily the html you are expecting.
Firefox doesn't have this problem because it explicitly states what it wants.
So in summary, change this:
to this:
respond_to do |format|
format.atom
format.html
end
respond_to do |format|
format.html
format.atom
end





1 comments:
THANKS! just what i needed... lame lame lame.
Post a Comment