diff options
author | Minteck <nekostarfan@gmail.com> | 2021-08-04 17:44:08 +0200 |
---|---|---|
committer | Minteck <nekostarfan@gmail.com> | 2021-08-04 17:44:08 +0200 |
commit | 2dd699bee894bff8976737e51902c16823f9af61 (patch) | |
tree | 39b298671bb72da734396249840b295924b5323d /_site/includes/dom/header.php | |
parent | 896fa7c96856142f844d958b049d5432f511641c (diff) | |
download | unchainedtech-2dd699bee894bff8976737e51902c16823f9af61.tar.gz unchainedtech-2dd699bee894bff8976737e51902c16823f9af61.tar.bz2 unchainedtech-2dd699bee894bff8976737e51902c16823f9af61.zip |
Added telemetry that syncs with Minteck Space
Diffstat (limited to '_site/includes/dom/header.php')
-rw-r--r-- | _site/includes/dom/header.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/_site/includes/dom/header.php b/_site/includes/dom/header.php index 15beaa1..97b8fb7 100644 --- a/_site/includes/dom/header.php +++ b/_site/includes/dom/header.php @@ -1,6 +1,8 @@ <?php
-$GLOBALS["experimentalUIisStable"] = false;
+$GLOBALS["experimentalUIisStable"] = true;
+
+require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/telemetry.php";
if ((isset($_COOKIE['_UnchainedTech_ExperimentalUI']) && $_COOKIE['_UnchainedTech_ExperimentalUI'] === "true") || $GLOBALS["experimentalUIisStable"]) {
require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/dom/v2/header.php";
|