Probably going to break something but use {} instead of []

This commit is contained in:
2025-09-29 13:24:56 -07:00
parent 3a68eaba86
commit a2f1748ff6
9 changed files with 87 additions and 10 deletions

View File

@@ -23,8 +23,8 @@ $stmt->execute();
$result = $stmt->get_result();
$rows = $result->fetch_all(MYSQLI_ASSOC);
$mapped = [];
$icons = [];
$mapped = new stdClass();
$icons = new stdClass();
foreach ($rows as $row) {
$savedata = json_decode($row['save_data'], true);