X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/6165f1ef9bf8abf6d07caff88f14a36f368832c6..bbfb5c116d07341badb79b731bb7b0e4425840eb:/lib/template/header.php diff --git a/lib/template/header.php b/lib/template/header.php index f9a4904..92937e2 100644 --- a/lib/template/header.php +++ b/lib/template/header.php @@ -8,15 +8,33 @@ if (stristr ($_SERVER['HTTP_ACCEPT'], 'application/xhtml+xml')) header('Content-Type: ' . $content_type); +$protocol = (bool)is_ssl() ? 'https' : 'http'; + +if ( !empty($cfg['web_root']) ) { + $cfg['web_root'] = preg_replace('#https?://#', $protocol . '://', $cfg['web_root'], 1); +} + +/* Avoids irritating errors with the installer (no conf file is present then). */ +if (!isset ($cfg['web_root'])) + $web_root = $protocol+'://' . $_SERVER['HTTP_HOST'] . '/'; +else + $web_root = $cfg['web_root']; + +if (!isset ($cfg['style'])) + $style = 'default'; +else + $style = $cfg['style']; + + ?>
-