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

@@ -25,7 +25,7 @@ if (isset($_POST['create_folder'])) {
logAudit("Folder", "Create", "$session_name created folder $folder_name", $client_id, $folder_id);
flash_alert("Folder <strong>$folder_name</strong> created");
flashAlert("Folder <strong>$folder_name</strong> created");
redirect();
@@ -53,7 +53,7 @@ if (isset($_POST['rename_folder'])) {
logAudit("Folder", "Rename", "$session_name renamed folder $old_folder_name to $folder_name", $client_id, $folder_id);
flash_alert("Folder <strong>$old_folder_name</strong> renamed to <strong>$folder_name</strong>");
flashAlert("Folder <strong>$old_folder_name</strong> renamed to <strong>$folder_name</strong>");
redirect();
@@ -87,7 +87,7 @@ if (isset($_GET['delete_folder'])) {
logAudit("Folder", "Delete", "$session_name deleted folder $folder_name", $client_id);
flash_alert("Folder <strong>$folder_name</strong> deleted", 'error');
flashAlert("Folder <strong>$folder_name</strong> deleted", 'error');
redirect();