diff --git a/src/server/cyberhex-code/api/php/database/compile_database.php b/src/server/cyberhex-code/api/php/database/compile_database.php index 05894fb..1b3bdb3 100644 --- a/src/server/cyberhex-code/api/php/database/compile_database.php +++ b/src/server/cyberhex-code/api/php/database/compile_database.php @@ -126,7 +126,7 @@ function remove_directory($dir) { // Check if the current item is a directory if (is_dir($filePath)) { // Recursively call the function for subdirectories - removeDirectory($filePath); + remove_directory($filePath); } else { // Delete the file unlink($filePath);