1
0
Fork 0

Fix incorrect ordering of ranking display

This commit is contained in:
Ainsley Ellis 2025-01-10 00:30:41 +00:00
parent 4dc5757543
commit be5ef3af5d

View file

@ -91,7 +91,7 @@ include "partials/head.php";
) ?></p> ) ?></p>
<?php if ( <?php if (
$game["status_id"] === STATUS_DONE $game["status_id"] === STATUS_DONE
) { ?><p><span>Your ranking: </span><?= $ranks->one ?? $ranks->two ?? $ranks->three ?? $ranks->final ?? 'N/A' ?></p><?php } ?> ) { ?><p><span>Your ranking: </span><?= $ranks->final ?? $ranks->three ?? $ranks->two ?? $ranks->one ?? 'N/A' ?></p><?php } ?>
</div> </div>
<div class="flow"> <div class="flow">
<?php if ($game["status_id"] !== STATUS_DELAYED) { ?> <?php if ($game["status_id"] !== STATUS_DELAYED) { ?>