From 05a4fcc9848ea1fb9feb5b5bfb7a2733dec3ce40 Mon Sep 17 00:00:00 2001 From: RaindropsSys Date: Fri, 21 Jul 2023 23:00:41 +0200 Subject: Updated 10 files and added 11 files (automated) --- pages/alerts.inc | 23 +++++++++++++++++++++++ pages/byspecies.inc | 5 ++++- pages/home.inc | 19 +++++++++++++++++-- pages/lists.inc | 16 ++++++++++++++++ 4 files changed, 60 insertions(+), 3 deletions(-) (limited to 'pages') diff --git a/pages/alerts.inc b/pages/alerts.inc index b58a9ce..a0b47ff 100644 --- a/pages/alerts.inc +++ b/pages/alerts.inc @@ -9,6 +9,29 @@ require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/header.inc'; ?>
diff --git a/pages/byspecies.inc b/pages/byspecies.inc index 294dee7..4a9ce66 100644 --- a/pages/byspecies.inc +++ b/pages/byspecies.inc @@ -31,6 +31,7 @@ function page() { global $lang; $merpony = []; $human = []; $kirin = []; + $deer = []; foreach ($members as $member) { foreach ($member["_metadata"]["species"] as $species) { @@ -44,6 +45,7 @@ function page() { global $lang; if ($species === "human") $human[] = $member; if ($species === "merpony") $merpony[] = $member; if ($species === "kirin") $kirin[] = $member; + if ($species === "deer") $deer[] = $member; } } @@ -53,7 +55,8 @@ function page() { global $lang; if (count($alicorn) > 0) species($alicorn, "alicorn", $lang["species"]["alicorn"][3]); if (count($batpony) > 0) species($batpony, "batpony", $lang["species"]["batpony"][3]); if (count($crystal) > 0) species($crystal, "crystal", $lang["species"]["crystal"][3]); - if (count($kirin) > 0) species($kirin, "kirin", "Kirin"); + if (count($deer) > 0 ) species($deer, "deer", "Deers"); + if (count($kirin) > 0) species($kirin, "kirin", "Kirins"); if (count($changeling) > 0) species($changeling, "changeling", "Changelings"); if (count($merpony) > 0) species($merpony, "merpony", "Merponies"); if (count($human) > 0) species($human, "human", "Humans"); diff --git a/pages/home.inc b/pages/home.inc index 18acaea..7485cfd 100644 --- a/pages/home.inc +++ b/pages/home.inc @@ -6,9 +6,12 @@ if (isset($_GET["ec"])) { require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/init.inc"; require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/header.inc'; global $readOnly; global $isNormallyLoggedIn; global $_PROFILE; global $lang; global $pages; global $isLowerLoggedIn; global $app; global $isLoggedIn; -function banner() { global $isLoggedIn; global $isLowerLoggedIn; $byColor = getMembersByColor(false, true); global $lang; ?> +global $use2023UI; + +function banner() { global $isLoggedIn; global $isLowerLoggedIn; $byColor = getMembersByColor(false, true); global $lang; global $use2023UI; ?>
- .png" style="width:128px;"> + .png" style="width:128px;" class="old-ui"> +

" style="height:32px;position:absolute;z-index:99;">

@@ -200,4 +203,16 @@ function members() { global $isLoggedIn; global $isLowerLoggedIn; global $app; ? ?>
+ + \ No newline at end of file diff --git a/pages/lists.inc b/pages/lists.inc index 2b507f4..c9baf06 100644 --- a/pages/lists.inc +++ b/pages/lists.inc @@ -9,6 +9,22 @@ require_once $_SERVER['DOCUMENT_ROOT'] . '/includes/components/header.inc'; ?>
-- cgit