Does Rails 3 automatically add a header if you are using IE8? I am seeing the meta tag for X-UA-Compatible set to “IE=8.0000” and it’s messing up one of my views.
I can’t seem to find anything else that would be doing it, so figured I’d ask the brains here.
Thanks,
Ruprict
If we have a look at all middlewares loaded in a vanilla rails3 app:
there’s ActionDispatch::BestStandardsSupport which source is setting the X-UA-Compatible header, not with IE=8.000 though. Do you run 3.0.0?