From 3fb73e41b539df62f75cbcf740488cfc15fa8b79 Mon Sep 17 00:00:00 2001 From: Blackstareye Date: Mon, 17 Feb 2025 18:13:46 +0100 Subject: [PATCH] fixed script upload - missing return statement --- lib/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/functions.php b/lib/functions.php index 0372507..7ac4c9e 100644 --- a/lib/functions.php +++ b/lib/functions.php @@ -446,7 +446,7 @@ function jirafeau_upload($file, $one_time_download, $key, $time, $ip, $crypt, $l 'link' => '', 'delete_link' => '')); } - jirafeau_add_file($file, $one_time_download, $key, $time, $ip, $crypt, $link_name_length, $file_hash_method); + return jirafeau_add_file($file, $one_time_download, $key, $time, $ip, $crypt, $link_name_length, $file_hash_method); } /** -- 2.34.1