$name created"); redirect(); } if (isset($_POST['edit_account'])) { validateCSRFToken($_POST['csrf_token']); enforceUserPermission('module_financial', 2); $account_id = intval($_POST['account_id']); $name = escapeSql($_POST['name']); $notes = escapeSql($_POST['notes']); mysqli_query($mysqli,"UPDATE accounts SET account_name = '$name', account_notes = '$notes' WHERE account_id = $account_id"); logAudit("Account", "Edit", "$session_name edited account $name"); flashAlert("Account $name edited"); redirect(); } if (isset($_GET['archive_account'])) { validateCSRFToken($_GET['csrf_token']); enforceUserPermission('module_financial', 2); $account_id = intval($_GET['archive_account']); $account_name = escapeSql(getFieldById('accounts', $account_id, 'account_name')); mysqli_query($mysqli,"UPDATE accounts SET account_archived_at = NOW() WHERE account_id = $account_id"); logAudit("Account", "Archive", "$session_name archived account $account_name"); flashAlert("Account $account_name archived", 'error'); redirect(); } // Not used anywhere? if (isset($_GET['delete_account'])) { validateCSRFToken($_GET['csrf_token']); enforceUserPermission('module_financial', 3); $account_id = intval($_GET['delete_account']); $account_name = escapeSql(getFieldById('accounts', $account_id, 'account_name')); mysqli_query($mysqli,"DELETE FROM accounts WHERE account_id = $account_id"); logAudit("Account", "Delete", "$session_name deleted account $account_name"); flashAlert("Account $account_name deleted", 'error'); redirect(); }