Time Zones Are Hard - https://tz.rita.moe

Show just "UTC" in the table

Changed files
+1 -1
+1 -1
index.php
···
<?php foreach($popTZ as $tz) { ?>
<div class="tz-table-element">
<strong>
-
<?= str_replace('_', ' ', explode('/', $tz, 2)[1]) ?> (<?= getOffset($tz) ?>)
+
<?= $tz === 'UTC' ? 'UTC' : str_replace('_', ' ', explode('/', $tz, 2)[1]) . ' (' . getOffset($tz) . ')' ?>
</strong>
<br/>
<span><?= toTZ($dt, $tz) ?></span>