Change the date display in the treasury

This commit is contained in:
Vladyslav
2018-06-09 16:14:16 +03:00
parent 29cf71f95f
commit 75a6bd3376
+4 -4
View File
@@ -19,11 +19,11 @@ $nextEffect = "-";
if($artefact['owner'] == 3) $active = "-"; if($artefact['owner'] == 3) $active = "-";
elseif(!$artefact['active'] && $artefact['conquered'] < $time - $activationTime) $active = "<b>Can't be activated</b>"; elseif(!$artefact['active'] && $artefact['conquered'] < $time - $activationTime) $active = "<b>Can't be activated</b>";
elseif (!$artefact['active']) $active = date("Y-m-d H:i:s", $artefact['conquered'] + $activationTime); elseif (!$artefact['active']) $active = date("d.m.Y H:i:s", $artefact['conquered'] + $activationTime);
else else
{ {
$active = "<b>".ACTIVE."</b>"; $active = "<b>".ACTIVE."</b>";
$nextEffect = date("Y-m-d H:i:s", $artefact['lastupdate'] + (86400 / (SPEED == 2 ? 1.5 : (SPEED == 3 ? 2 : SPEED)))); $nextEffect = date("d.m.Y H:i:s", $artefact['lastupdate'] + (86400 / (SPEED == 2 ? 1.5 : (SPEED == 3 ? 2 : SPEED))));
} }
//// Added by brainiac - thank you //// Added by brainiac - thank you
@@ -124,7 +124,7 @@ $bonus = isset($betterorbadder) ? $betterorbadder." (<b>".str_replace(["(", ")"]
<tr> <tr>
<th><?php echo TIME_CONQUER; ?></th> <th><?php echo TIME_CONQUER; ?></th>
<td><?php echo ($artefact['owner'] != 3) ? date("Y-m-d H:i:s",$artefact['conquered']) : "-";?></td> <td><?php echo ($artefact['owner'] != 3) ? date("d.m.Y H:i:s",$artefact['conquered']) : "-";?></td>
</tr> </tr>
<tr> <tr>
@@ -166,7 +166,7 @@ foreach($owners as $owner){
<span class="none">[?]</span> <span class="none">[?]</span>
<?php }?> <?php }?>
</td> </td>
<td><span class="none"><?php echo date("Y-m-d H:i:s", $owner['conqueredtime']);?></span></td> <td><span class="none"><?php echo date("d.m.Y H:i:s", $owner['conqueredtime']);?></span></td>
</tr> </tr>
<?php <?php
} }