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

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.
This commit is contained in:
Rouji 2021-06-05 23:36:28 +02:00
parent 3d3ccec162
commit eaee93e0ed

View File

@ -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.