From 4e94acfa77564a30dfda5a2fb57f978446265e6c Mon Sep 17 00:00:00 2001 From: Jerome Jutteau Date: Fri, 13 Nov 2015 21:47:44 +0100 Subject: [PATCH] add header for IE and compatibitity view Signed-off-by: Jerome Jutteau --- lib/template/header.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/template/header.php b/lib/template/header.php index 3c2af83..5a365b9 100644 --- a/lib/template/header.php +++ b/lib/template/header.php @@ -5,9 +5,12 @@ $content_type = 'text/html; charset=utf-8'; if (isset ($_SERVER['HTTP_ACCEPT']) && stristr ($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml')) +{ $content_type = 'application/xhtml+xml; charset=utf-8'; +} header('Content-Type: ' . $content_type); +header('x-ua-compatible: ie=edge'); $protocol = (bool)is_ssl() ? 'https' : 'http'; -- 2.34.1