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

@@ -37,7 +37,7 @@ if (isset($_POST['add_transfer'])) {
logAudit("Account Transfer", "Create", "$session_name transferred " . numfmt_format_currency($currency_format, $amount, $account_currency_code) . " from account $source_account_name to $destination_account_name", 0, $transfer_id);
flash_alert("Transferred <strong>" . numfmt_format_currency($currency_format, $amount, $account_currency_code) . "</strong> from <strong>$source_account_name</strong> to <strong>$destination_account_name</strong>");
flashAlert("Transferred <strong>" . numfmt_format_currency($currency_format, $amount, $account_currency_code) . "</strong> from <strong>$source_account_name</strong> to <strong>$destination_account_name</strong>");
redirect();
@@ -63,7 +63,7 @@ if (isset($_POST['edit_transfer'])) {
logAudit("Account Transfer", "Edit", "$session_name edited transfer", 0, $transfer_id);
flash_alert("Transfer edited");
flashAlert("Transfer edited");
redirect();
@@ -90,7 +90,7 @@ if (isset($_GET['delete_transfer'])) {
logAudit("Account Transfer", "Delete", "$session_name deleted transfer");
flash_alert("Transfer deleted", 'error');
flashAlert("Transfer deleted", 'error');
redirect();