diff options
author | RaindropsSys <contact@minteck.org> | 2023-07-05 18:25:17 +0200 |
---|---|---|
committer | RaindropsSys <contact@minteck.org> | 2023-07-05 18:25:17 +0200 |
commit | 783355a2b835c7d036674e121de4424b346fa9e4 (patch) | |
tree | dc601cc86c5ff33d99eb68958d305ab790c369ce /includes/fragments | |
parent | ea1e6f5c4d1f77f81ed7acd8f4e1f36b81073596 (diff) | |
download | pluralconnect-783355a2b835c7d036674e121de4424b346fa9e4.tar.gz pluralconnect-783355a2b835c7d036674e121de4424b346fa9e4.tar.bz2 pluralconnect-783355a2b835c7d036674e121de4424b346fa9e4.zip |
Updated 7 files and added 5 files (automated)
Diffstat (limited to 'includes/fragments')
-rw-r--r-- | includes/fragments/metadata.inc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/includes/fragments/metadata.inc b/includes/fragments/metadata.inc index 962e3a0..69ea5a3 100644 --- a/includes/fragments/metadata.inc +++ b/includes/fragments/metadata.inc @@ -91,8 +91,9 @@ if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/includes/data/metadata/" . $member <option <?= $metadata["species"][0] === "batpony" ? "selected" : "" ?> value="batpony">Bat pony</option> <option <?= $metadata["species"][0] === "crystal" ? "selected" : "" ?> value="crystal">Crystal pony</option> <option <?= $metadata["species"][0] === "changeling" ? "selected" : "" ?> value="changeling">Changeling</option> - <option <?= $metadata["species"][0] === "human" ? "selected" : "" ?> value="human">Human</option> <option <?= $metadata["species"][0] === "merpony" ? "selected" : "" ?> value="merpony">Merpony</option> + <option <?= $metadata["species"][0] === "kirin" ? "selected" : "" ?> value="kirin">Kirin</option> + <option <?= $metadata["species"][0] === "human" ? "selected" : "" ?> value="human">Human</option> </select> <select class="tooltip-nohelp form-select" style='display:inline-block;filter:invert(1) hue-rotate(180deg);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");' name="species[1]"> <option <?= !isset($metadata["species"][1]) || $metadata["species"][1] === "" ? "selected" : "" ?> value="">None</option> @@ -103,8 +104,9 @@ if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/includes/data/metadata/" . $member <option <?= ($metadata["species"][1] ?? "") === "batpony" ? "selected" : "" ?> value="batpony">Bat pony</option> <option <?= ($metadata["species"][1] ?? "") === "crystal" ? "selected" : "" ?> value="crystal">Crystal pony</option> <option <?= ($metadata["species"][1] ?? "") === "changeling" ? "selected" : "" ?> value="changeling">Changeling</option> - <option <?= ($metadata["species"][1] ?? "") === "human" ? "selected" : "" ?> value="human">Human</option> <option <?= ($metadata["species"][1] ?? "") === "merpony" ? "selected" : "" ?> value="merpony">Merpony</option> + <option <?= ($metadata["species"][1] ?? "") === "kirin" ? "selected" : "" ?> value="kirin">Kirin</option> + <option <?= ($metadata["species"][1] ?? "") === "human" ? "selected" : "" ?> value="human">Human</option> </select> </div> </div> |