1
0
mirror of https://github.com/Rouji/single_php_filehost.git synced 2025-04-04 16:39:34 +00:00

fix EXTERNAL_HOOK

This commit is contained in:
Andreas Hackl 2023-04-25 15:00:23 +09:00
parent 10b37a4d83
commit 5ddbc13977

View File

@ -152,12 +152,13 @@ function store_file(string $name, string $tmpfile, bool $formatted = false) : vo
putenv('ORIGINAL_NAME='.$name); putenv('ORIGINAL_NAME='.$name);
putenv('STORED_FILE='.$target_file); putenv('STORED_FILE='.$target_file);
$ret = -1; $ret = -1;
$out = exec(CONFIG::EXTERNAL_HOOK, $_ = null, $ret); $out = null;
if ($out !== false && $ret !== 0) $last_line = exec(CONFIG::EXTERNAL_HOOK, $out, $ret);
if ($last_line !== false && $ret !== 0)
{ {
unlink($target_file); unlink($target_file);
header('HTTP/1.0 400 Bad Request'); header('HTTP/1.0 400 Bad Request');
print("Error: $out\n"); print("Error: $last_line\n");
return; return;
} }
} }