mirror of
https://github.com/Rouji/single_php_filehost.git
synced 2025-04-04 16:39:34 +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:
parent
3d3ccec162
commit
eaee93e0ed
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user