Added unlink() call to clean up any possible temporary files.

git-svn-id: https://develop.svn.wordpress.org/trunk@435 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dougal Campbell 2003-10-08 17:41:54 +00:00
parent 63a2e6d5a1
commit ad420fecc5
1 changed files with 8 additions and 2 deletions

View File

@ -171,8 +171,11 @@ if (!empty($HTTP_POST_VARS)) { //$img1_name != "") {
if (!$moved) {
$moved = copy($img1, $pathtofile2);
}
if (!$moved)
if (!$moved) {
die("Couldn't Upload Your File to $pathtofile2.");
} else {
@unlink($img1);
}
// duplicate-renaming function contributed by Gary Lawrence Murphy
?>
@ -208,8 +211,11 @@ if (!empty($HTTP_POST_VARS)) { //$img1_name != "") {
$moved = copy($img1, $pathtofile);
}
// Still couldn't get it. Give up.
if (!moved)
if (!moved) {
die("Couldn't Upload Your File to $pathtofile.");
} else {
@unlink($img1);
}
} else {
rename($img1, $pathtofile)
or die("Couldn't Upload Your File to $pathtofile.");