All.
I have a 3.2 app that I have imported into a 5 environment, and am seeing "Content-Type: text/html; charset=utf-8" on almost every page. I have been trying to find the difference between the pages that display this and those that don't, but I can't find anything. The page templates (Blue-Grey 13) are the same for both pages. When I make a copy of the page that works, the new copy subsequently displays this, so I'm stumped. I've read this thread and it looks like the same thing, but viewing the debug, I can't see the http header closing at different points on the pages that work.
If I view page source, it looks like this:
Content-Type: text/html; charset=utf-8
<html lang="en-gb" xmlns="http://www.w3.org/1999/xhtml" xmlns:htmldb="http://htmldb.oracle.com">
<head>
<meta http-equiv="x-ua-compatible" content="IE=edge" />
In Firebug, the page looks like this, with the opening head tag immediately closing:
<html lang="en-gb" xmlns:htmldb="http://htmldb.oracle.com" xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
Content-Type: text/html; charset=utf-8
<meta content="IE=edge" http-equiv="x-ua-compatible">
... and the meta tags from the page template header appear after the body tag.
Any help appreciated,
Malcolm.