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

Remove unused sprintf

This commit is contained in:
mul91n 2021-08-14 15:32:50 +10:00
parent 6f579bc23f
commit ecebb86614

View File

@ -122,7 +122,7 @@ function store_file($name, $tmpfile, $formatted = false)
if ($size == 0)
{
header("HTTP/1.0 400 Bad Request");
printf("Error 400: Uploaded file is empty\n", $MAX_FILESIZE);
print("Error 400: Uploaded file is empty\n");
return;
}