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

@@ -89,7 +89,7 @@ function getPostData() {
$raw = file_get_contents("php://input");
parse_str($raw, $postData);
$decrypted = [];
$decrypted = new stdClass();
foreach ($postData as $k => $v) {
$decKey = decrypt($k);
$decValue = decrypt($v);