mirror of
https://github.com/Rouji/single_php_filehost.git
synced 2025-04-05 00:49:33 +00:00
Return early on move_uploaded_files() error
This commit is contained in:
parent
1c7d3d2abc
commit
68d8c33687
13
index.php
13
index.php
@ -147,8 +147,13 @@ function store_file($name, $tmpfile, $formatted = false)
|
|||||||
}
|
}
|
||||||
|
|
||||||
$res = move_uploaded_file($tmpfile, $target_file);
|
$res = move_uploaded_file($tmpfile, $target_file);
|
||||||
if ($res)
|
if (!$res)
|
||||||
{
|
{
|
||||||
|
//TODO: proper error handling?
|
||||||
|
header("HTTP/1.0 520 Unknown Error");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if ($EXTERNAL_HOOK !== null)
|
if ($EXTERNAL_HOOK !== null)
|
||||||
{
|
{
|
||||||
putenv("REMOTE_ADDR=".$_SERVER['REMOTE_ADDR']);
|
putenv("REMOTE_ADDR=".$_SERVER['REMOTE_ADDR']);
|
||||||
@ -195,12 +200,6 @@ function store_file($name, $tmpfile, $formatted = false)
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
//TODO: proper error handling?
|
|
||||||
header("HTTP/1.0 520 Unknown Error");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// purge all files older than their retention period allows.
|
// purge all files older than their retention period allows.
|
||||||
function purge_files()
|
function purge_files()
|
||||||
|
Loading…
Reference in New Issue
Block a user