summaryrefslogtreecommitdiff
path: root/includes/util/homepage.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/util/homepage.inc')
-rw-r--r--includes/util/homepage.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/util/homepage.inc b/includes/util/homepage.inc
index 45f91b6..df6679f 100644
--- a/includes/util/homepage.inc
+++ b/includes/util/homepage.inc
@@ -18,7 +18,7 @@ function newHomepage($id, $page, $title) {
<?php endif; ?>
<div class="new-homepage-system-list" id="new-homepage-system-<?= $id ?>-list">
- <?php $list = array_values(scoreOrder(withTravelers(json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/" . $id . "/members.json"), true), $id), $id)); foreach ($list as $index => $member): ?>
+ <?php $list = array_values(scoreOrder(json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/" . $id . "/members.json"), true), $id)); foreach ($list as $index => $member): ?>
<a href="/<?= $member["name"] ?>" class="new-homepage-link <?= $index === count($list) - 1 ? "new-homepage-link-last" : "" ?>" style="color: white; text-decoration: none !important; display: block; background-color: #<?= $member["color"] ?>22; padding: 5px 10px;">
<img src="<?= getAsset($id, $member["id"]) ?>" style="width: 32px; height: 32px; vertical-align: middle; background-color: rgba(0, 0, 0, .25); border-radius: 999px;">
<span style="width: calc(100% - 37px); vertical-align: middle; margin-left: 5px;text-overflow: ellipsis;white-space: nowrap;overflow: hidden;"><?= $member["display_name"] ?? $member["name"] ?></span>
@@ -26,4 +26,4 @@ function newHomepage($id, $page, $title) {
<?php endforeach; ?>
</div>
</div>
-<?php } \ No newline at end of file
+<?php }