X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/431bebf06dfe7a2a1fecf8d933da97f7a03a358a..078a50aeed0f055af710b51bc71f109d8ffc1318:/lib/template/header.php diff --git a/lib/template/header.php b/lib/template/header.php index d6dc4b3..5a365b9 100644 --- a/lib/template/header.php +++ b/lib/template/header.php @@ -3,10 +3,14 @@ header('Vary: Accept'); $content_type = 'text/html; charset=utf-8'; -if (stristr ($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml')) +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'; @@ -25,7 +29,8 @@ if (!isset ($cfg['style'])) else $style = $cfg['style']; -if (stristr ($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml')) +if (isset ($_SERVER['HTTP_ACCEPT']) && + stristr ($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml')) { ?> @@ -46,6 +51,6 @@ else
- +