From eaee93e0ede184e7b9ee52fb8ae13a11aa5579b2 Mon Sep 17 00:00:00 2001 From: Rouji Date: Sat, 5 Jun 2021 23:36:28 +0200 Subject: [PATCH] add newline to output kept annoying people who their shell prompt stuck to the end of the link and breaking url handling in their terminal etc. --- index.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.php b/index.php index a80adcf..86b953d 100755 --- a/index.php +++ b/index.php @@ -116,13 +116,13 @@ function store_file($name, $tmpfile, $formatted = false) if ($size > $MAX_FILESIZE * 1024 * 1024) { header("HTTP/1.0 413 Payload Too Large"); - printf("Error 413: Max File Size (%d MiB) Exceeded", $MAX_FILESIZE); + printf("Error 413: Max File Size (%d MiB) Exceeded\n", $MAX_FILESIZE); return; } if ($size == 0) { header("HTTP/1.0 400 Bad Request"); - printf("Error 400: Uploaded file is empty", $MAX_FILESIZE); + printf("Error 400: Uploaded file is empty\n", $MAX_FILESIZE); return; } @@ -160,7 +160,7 @@ function store_file($name, $tmpfile, $formatted = false) { unlink($target_file); header("HTTP/1.0 400 Bad Request"); - print("Error: ".$out); + print("Error: ".$out."\n"); return; } } @@ -176,7 +176,7 @@ function store_file($name, $tmpfile, $formatted = false) } else { - printf($url); + printf($url."\n"); } // log uploader's IP, original filename, etc.