Rename Functions: flash_alert, sanitizeFilename and display_folder_options using camelCase instead to match other custom php functions

This commit is contained in:
johnnyq
2026-07-14 17:41:41 -04:00
parent f1836c70cd
commit b8873039a4
82 changed files with 603 additions and 603 deletions

View File

@@ -19,7 +19,7 @@ if (isset($_POST['add_tax'])) {
logAudit("Tax", "Create", "$session_name created tax $name - $percent%", 0, $tax_id);
flash_alert("Tax <strong>$name</strong> ($percent%) created");
flashAlert("Tax <strong>$name</strong> ($percent%) created");
redirect();
@@ -37,7 +37,7 @@ if (isset($_POST['edit_tax'])) {
logAudit("Tax", "Edit", "$session_name edited tax $name - $percent%", 0, $tax_id);
flash_alert("Tax <strong>$name</strong> ($percent%) edited");
flashAlert("Tax <strong>$name</strong> ($percent%) edited");
redirect();
@@ -55,7 +55,7 @@ if (isset($_GET['archive_tax'])) {
logAudit("Tax", "Archive", "$session_name archived tax $tax_name", 0, $tax_id);
flash_alert("Tax <strong>$tax_name</strong> Archived", 'error');
flashAlert("Tax <strong>$tax_name</strong> Archived", 'error');
redirect();
@@ -73,7 +73,7 @@ if (isset($_GET['delete_tax'])) {
logAudit("Tax", "Delete", "$session_name deleted tax $tax_name");
flash_alert("Tax <strong>$tax_name</strong> deleted", 'error');
flashAlert("Tax <strong>$tax_name</strong> deleted", 'error');
redirect();