]> git.p6c8.net - jirafeau_mojo42.git/blobdiff - lib/template/header.php
Merge remote-tracking branch 'origin/master'
[jirafeau_mojo42.git] / lib / template / header.php
index 3c2af8361df84aa4c32d9c7a10ada3499fe0078b..59d145d1276718556a4df74ab5e2d7f0e46b9421 100644 (file)
@@ -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';
 
@@ -43,11 +46,16 @@ else
 }
 ?>
 <head>
-  <title><?php echo t('Jirafeau, your web file repository'); ?></title>
+  <title><?php echo (true === empty($cfg['title']))? t('Jirafeau, your web file repository') : $cfg['title']; ?></title>
   <meta http-equiv="Content-Type" content="<?php echo $content_type; ?>" />
   <link href="<?php echo $web_root . 'media/' . $style . '/style.css.php'; ?>" rel="stylesheet" type="text/css" />
 </head>
 <body>
 <script type="text/javascript" language="Javascript" src="lib/functions.js.php"></script>
+
 <div id="content">
-<h1><a href="<?php echo $web_root; ?>"><?php echo t('Jirafeau, your web file repository'); ?></a></h1>
+  <h1>
+    <a href="<?php echo $web_root; ?>">
+      <?php echo (true === empty($cfg['title']))? t('Jirafeau, your web file repository') : $cfg['title']; ?>
+    </a>
+  </h1>

patrick-canterino.de