X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/d36beb5721c5a2fbda02c947e6953a490fa6aac6..e50e02ff0e77b25298ef4835052bc2942d92e9a4:/lib/template/header.php diff --git a/lib/template/header.php b/lib/template/header.php index 91f857e..5a365b9 100644 --- a/lib/template/header.php +++ b/lib/template/header.php @@ -3,7 +3,14 @@ header('Vary: Accept'); $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'; @@ -22,16 +29,28 @@ if (!isset ($cfg['style'])) else $style = $cfg['style']; - +if (isset ($_SERVER['HTTP_ACCEPT']) && + stristr ($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml')) +{ +?> + + + + <?php echo t('Jirafeau, your web file repository'); ?> - +