Replace Function sanitizeInput() with just escapeSql() and update all instances throughout

This commit is contained in:
johnnyq
2026-07-14 17:17:50 -04:00
parent 7bc47a58fe
commit b57ddc0e5c
148 changed files with 1945 additions and 1945 deletions

View File

@@ -79,7 +79,7 @@ $sql_tax = mysqli_query($mysqli, "SELECT `tax_name` FROM `taxes`");
while ($row = mysqli_fetch_assoc($sql_tax)) {
$tax_name_raw = $row['tax_name'];
$tax_name = sanitizeInput($tax_name_raw);
$tax_name = escapeSql($tax_name_raw);
echo "<tr>";
echo "<td>" . escapeHtml($tax_name_raw) . "</td>";