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

@@ -12,7 +12,7 @@ if (isset($_GET['send_failed_mail'])) {
logAudit("Email", "Send", "$session_name attempted to force send email id: $email_id in the mail queue", 0, $email_id);
flash_alert("Email Force Sent, give it a minute to resend");
flashAlert("Email Force Sent, give it a minute to resend");
redirect();
@@ -28,7 +28,7 @@ if (isset($_GET['cancel_mail'])) {
logAudit("Email", "Send", "$session_name canceled send email id: $email_id in the mail queue", 0, $email_id);
flash_alert("Email cancelled and marked as failed.", 'error');
flashAlert("Email cancelled and marked as failed.", 'error');
redirect();
@@ -54,7 +54,7 @@ if (isset($_POST['bulk_cancel_emails'])) {
logAudit("Email", "Bulk Cancel", "$session_name cancelled $count email(s) in the mail queue");
flash_alert("Cancelled <strong>$count</strong> email(s)", 'error');
flashAlert("Cancelled <strong>$count</strong> email(s)", 'error');
}
@@ -82,7 +82,7 @@ if (isset($_POST['bulk_delete_emails'])) {
logAudit("Email", "Bulk Delete", "$session_name deleted $count email(s) from the mail queue");
flash_alert("Deleted <strong>$count</strong> email(s)", 'error');
flashAlert("Deleted <strong>$count</strong> email(s)", 'error');
}