Update Var naming schemes to match the post var name

This commit is contained in:
johnnyq
2026-03-08 14:25:12 -04:00
parent edad83cc37
commit e2547122a6
8 changed files with 47 additions and 47 deletions

View File

@@ -18,7 +18,7 @@ if (isset($_POST['create_recurring_expense'])) {
$amount = floatval(str_replace(',', '', $_POST['amount']));
$account = intval($_POST['account']);
$vendor = intval($_POST['vendor']);
$client_id = intval($_POST['client']);
$client_id = intval($_POST['client_id']);
$category = intval($_POST['category']);
$description = sanitizeInput($_POST['description']);
$reference = sanitizeInput($_POST['reference']);
@@ -54,7 +54,7 @@ if (isset($_POST['edit_recurring_expense'])) {
$amount = floatval(str_replace(',', '', $_POST['amount']));
$account = intval($_POST['account']);
$vendor = intval($_POST['vendor']);
$client_id = intval($_POST['client']);
$client_id = intval($_POST['client_id']);
$category = intval($_POST['category']);
$description = sanitizeInput($_POST['description']);
$reference = sanitizeInput($_POST['reference']);