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

@@ -18,7 +18,7 @@ if(isset($_POST['create_custom_field'])){
logAudit("Custom Field", "Create", "$session_name created custom field $label", 0, $custom_field_id);
flash_alert("Custom field <strong>$label</strong> created");
flashAlert("Custom field <strong>$label</strong> created");
redirect();
@@ -34,7 +34,7 @@ if(isset($_POST['edit_custom_field'])){
logAudit("Custom Field", "Edit", "$session_name edited custom field $label", 0, $custom_field_id);
flash_alert("Custom field <strong>$label</strong> edited");
flashAlert("Custom field <strong>$label</strong> edited");
redirect();
@@ -50,7 +50,7 @@ if(isset($_GET['delete_custom_field'])){
logAudit("Custom Field", "Delete", "$session_name deleted custom field $label");
flash_alert("Custom field <strong>$label</strong> deleted", 'error');
flashAlert("Custom field <strong>$label</strong> deleted", 'error');
redirect();