diff options
-rw-r--r-- | includes/desktop/template_head_start.php | 3 | ||||
-rw-r--r-- | pages/dekomp.php | 1 | ||||
-rw-r--r-- | pages/exklusiv.php | 1 | ||||
-rw-r--r-- | pages/trivia.php | 1 |
4 files changed, 5 insertions, 1 deletions
diff --git a/includes/desktop/template_head_start.php b/includes/desktop/template_head_start.php index c0c12f4..c931202 100644 --- a/includes/desktop/template_head_start.php +++ b/includes/desktop/template_head_start.php @@ -4,7 +4,7 @@ <meta http-equiv="imagetoolbar" content="no"> <meta http-equiv="MSThemeCompatible" content="no"> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> - <title><?= htmlentities($PAGE_TITLE ?? "") ?> - Mystic House Corner</title> + <title><?= htmlentities($PAGE_TITLE ?? "") ?></title> <script language="JavaScript"> <!-- function getLocation() { @@ -15,6 +15,7 @@ location = getLocation(); } else if ("history" in window.top && "replaceState" in window.top.history) { window.top.history.replaceState(null, "", getLocation()); + window.top.document.title = document.title + " \u2012 Mystic House Corner"; } // --> </script> diff --git a/pages/dekomp.php b/pages/dekomp.php index 72554f9..2955b42 100644 --- a/pages/dekomp.php +++ b/pages/dekomp.php @@ -1,4 +1,5 @@ <?php $NAV_LINK_ID = "dekomp"; ?> +<?php $PAGE_TITLE = "Dekomp"; ?> <?php include __DIR__ . "/../includes/template_start.php"; ?> <h1>Dekomp</h1> diff --git a/pages/exklusiv.php b/pages/exklusiv.php index c26c863..5a509df 100644 --- a/pages/exklusiv.php +++ b/pages/exklusiv.php @@ -1,4 +1,5 @@ <?php $NAV_LINK_ID = "exklusiv"; ?> +<?php $PAGE_TITLE = "Exklusiv"; ?> <?php include __DIR__ . "/../includes/template_start.php"; ?> <h1>Exklusiv</h1> diff --git a/pages/trivia.php b/pages/trivia.php index 06a9237..914aa34 100644 --- a/pages/trivia.php +++ b/pages/trivia.php @@ -1,4 +1,5 @@ <?php $NAV_LINK_ID = "trivia"; ?> +<?php $PAGE_TITLE = "Trivia"; ?> <?php include __DIR__ . "/../includes/template_start.php"; ?> <h1>Trivia</h1> |