Fix incorrect ordering of ranking display
This commit is contained in:
parent
4dc5757543
commit
be5ef3af5d
1 changed files with 1 additions and 1 deletions
|
|
@ -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) { ?>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue