From 739eadae511538ea10d6b03e046fd1bf10226c69 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Sat, 31 Jan 2026 00:50:39 -0700 Subject: [PATCH] Only allow state 1 --- database/getMarketplaceIcons.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/getMarketplaceIcons.php b/database/getMarketplaceIcons.php index 725da39..0e31dfd 100644 --- a/database/getMarketplaceIcons.php +++ b/database/getMarketplaceIcons.php @@ -16,7 +16,7 @@ $onlyShowEnabled = isset($post['onlyShowEnabled']) ? (string) $post['onlyShowEna $onlyShowValue = (string) $post['onlyShowValue'] ?? ''; $currentIcons = json_decode(base64_decode((string) ($post['currentIcons'] ?? 'W10K'))); -$where = ["(state = 1 OR state = 2)"]; +$where = ["state = 1"]; $params = []; $types = ""; $order = match ($sortBy) {