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

@@ -21,7 +21,7 @@ if (isset($_POST['add_account'])) {
logAudit("Account", "Create", "$session_name created account $name");
flash_alert("Account <strong>$name</strong> created");
flashAlert("Account <strong>$name</strong> created");
redirect();
@@ -41,7 +41,7 @@ if (isset($_POST['edit_account'])) {
logAudit("Account", "Edit", "$session_name edited account $name");
flash_alert("Account <strong>$name</strong> edited");
flashAlert("Account <strong>$name</strong> edited");
redirect();
@@ -61,7 +61,7 @@ if (isset($_GET['archive_account'])) {
logAudit("Account", "Archive", "$session_name archived account $account_name");
flash_alert("Account <strong>$account_name</strong> archived", 'error');
flashAlert("Account <strong>$account_name</strong> archived", 'error');
redirect();
@@ -82,7 +82,7 @@ if (isset($_GET['delete_account'])) {
logAudit("Account", "Delete", "$session_name deleted account $account_name");
flash_alert("Account <strong>$account_name</strong> deleted", 'error');
flashAlert("Account <strong>$account_name</strong> deleted", 'error');
redirect();