diff options
author | Minteck <nekostarfan@gmail.com> | 2021-08-24 15:37:39 +0200 |
---|---|---|
committer | Minteck <nekostarfan@gmail.com> | 2021-08-24 15:37:39 +0200 |
commit | 93d028fe3c2a74edfdd197915de955ad6a84337b (patch) | |
tree | 325b994c5ee67197d0edaba942a5805ae63eb25b /_site/includes | |
parent | 2dd699bee894bff8976737e51902c16823f9af61 (diff) | |
download | unchainedtech-93d028fe3c2a74edfdd197915de955ad6a84337b.tar.gz unchainedtech-93d028fe3c2a74edfdd197915de955ad6a84337b.tar.bz2 unchainedtech-93d028fe3c2a74edfdd197915de955ad6a84337b.zip |
Commit
Diffstat (limited to '_site/includes')
-rw-r--r-- | _site/includes/modules/desktop.php | 1 | ||||
-rw-r--r-- | _site/includes/modules/mobile.php | 1 | ||||
-rw-r--r-- | _site/includes/telemetry.php | 8 |
3 files changed, 4 insertions, 6 deletions
diff --git a/_site/includes/modules/desktop.php b/_site/includes/modules/desktop.php index 9f93735..5909b2f 100644 --- a/_site/includes/modules/desktop.php +++ b/_site/includes/modules/desktop.php @@ -30,7 +30,6 @@ <a href="https://minteck.ro.lt" class="dropdown-item"><span class="app-title"><img alt="" src="/apps/minteck.svg" class="app-icon"> Minteck's Space</span></a>
<a href="https://unchainedtech.minteck.ro.lt" class="dropdown-item"><span class="app-title"><img alt="" src="/apps/unchainedtech.png" class="app-icon"> UnchainedTech</span></a>
<a href="https://jetbrains.minteck.ro.lt/hub" class="dropdown-item"><img alt="" src="/apps/hub.svg" class="app-icon"> <span class="app-title">Minteck's Hub</span></a>
- <a href="https://jetbrains.minteck.ro.lt/youtrack" class="dropdown-item"><img alt="" src="/apps/youtrack.svg" class="app-icon"> <span class="app-title">YouTrack</span></a>
</div>
</div>
</div>
diff --git a/_site/includes/modules/mobile.php b/_site/includes/modules/mobile.php index 967925e..e6dd64f 100644 --- a/_site/includes/modules/mobile.php +++ b/_site/includes/modules/mobile.php @@ -29,7 +29,6 @@ <a href="https://minteck.ro.lt" class="dropdown-item"><span class="app-title"><img alt="" src="/apps/minteck.svg" class="app-icon"> Minteck's Space</span></a>
<a href="https://unchainedtech.minteck.ro.lt" class="dropdown-item"><span class="app-title"><img alt="" src="/apps/unchainedtech.png" class="app-icon"> UnchainedTech</span></a>
<a href="https://jetbrains.minteck.ro.lt/hub" class="dropdown-item"><img alt="" src="/apps/hub.svg" class="app-icon"> <span class="app-title">Minteck's Hub</span></a>
- <a href="https://jetbrains.minteck.ro.lt/youtrack" class="dropdown-item"><img alt="" src="/apps/youtrack.svg" class="app-icon"> <span class="app-title">YouTrack</span></a>
</div>
</div>
</div>
diff --git a/_site/includes/telemetry.php b/_site/includes/telemetry.php index cb82c40..1748eef 100644 --- a/_site/includes/telemetry.php +++ b/_site/includes/telemetry.php @@ -8,16 +8,16 @@ $month = date('m'); $year = date('y'); $url = "unchained:" .explode("?", $_SERVER['REQUEST_URI'])[0]; -if (!isset($db[$year]) && $_SERVER['PHP_SELF'] !== "/404.php") { +if (!isset($db[$year]) && substr($_SERVER['PHP_SELF'], 0, 5) !== "/errs") { $db[$year] = []; } -if (!isset($db[$year][$month]) && $_SERVER['PHP_SELF'] !== "/404.php") { +if (!isset($db[$year][$month]) && substr($_SERVER['PHP_SELF'], 0, 5) !== "/errs") { $db[$year][$month] = []; } -if (!isset($db[$year][$month][$day]) && $_SERVER['PHP_SELF'] !== "/404.php") { +if (!isset($db[$year][$month][$day]) && substr($_SERVER['PHP_SELF'], 0, 5) !== "/errs") { $db[$year][$month][$day] = []; } -if (!isset($db[$year][$month][$day][$url]) && $_SERVER['PHP_SELF'] !== "/404.php") { +if (!isset($db[$year][$month][$day][$url]) && substr($_SERVER['PHP_SELF'], 0, 5) !== "/errs") { $db[$year][$month][$day][$url] = []; } |