From 5ddbc139779e75553254c6723d7bf8b0d2231316 Mon Sep 17 00:00:00 2001 From: Andreas Hackl Date: Tue, 25 Apr 2023 15:00:23 +0900 Subject: [PATCH] fix EXTERNAL_HOOK --- index.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/index.php b/index.php index ee1c8a2..12f1578 100755 --- a/index.php +++ b/index.php @@ -152,12 +152,13 @@ function store_file(string $name, string $tmpfile, bool $formatted = false) : vo putenv('ORIGINAL_NAME='.$name); putenv('STORED_FILE='.$target_file); $ret = -1; - $out = exec(CONFIG::EXTERNAL_HOOK, $_ = null, $ret); - if ($out !== false && $ret !== 0) + $out = null; + $last_line = exec(CONFIG::EXTERNAL_HOOK, $out, $ret); + if ($last_line !== false && $ret !== 0) { unlink($target_file); header('HTTP/1.0 400 Bad Request'); - print("Error: $out\n"); + print("Error: $last_line\n"); return; } }