mirror of
https://github.com/itflow-org/itflow
synced 2026-08-04 06:37:15 +00:00
Rename Functions: flash_alert, sanitizeFilename and display_folder_options using camelCase instead to match other custom php functions
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user