mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-24 01:57:53 +01:00
Added unlink() call to clean up any possible temporary files.
git-svn-id: http://svn.automattic.com/wordpress/trunk@435 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bc40314e66
commit
bee64c0d3f
@ -171,8 +171,11 @@ if (!empty($HTTP_POST_VARS)) { //$img1_name != "") {
|
|||||||
if (!$moved) {
|
if (!$moved) {
|
||||||
$moved = copy($img1, $pathtofile2);
|
$moved = copy($img1, $pathtofile2);
|
||||||
}
|
}
|
||||||
if (!$moved)
|
if (!$moved) {
|
||||||
die("Couldn't Upload Your File to $pathtofile2.");
|
die("Couldn't Upload Your File to $pathtofile2.");
|
||||||
|
} else {
|
||||||
|
@unlink($img1);
|
||||||
|
}
|
||||||
|
|
||||||
// duplicate-renaming function contributed by Gary Lawrence Murphy
|
// duplicate-renaming function contributed by Gary Lawrence Murphy
|
||||||
?>
|
?>
|
||||||
@ -208,8 +211,11 @@ if (!empty($HTTP_POST_VARS)) { //$img1_name != "") {
|
|||||||
$moved = copy($img1, $pathtofile);
|
$moved = copy($img1, $pathtofile);
|
||||||
}
|
}
|
||||||
// Still couldn't get it. Give up.
|
// Still couldn't get it. Give up.
|
||||||
if (!moved)
|
if (!moved) {
|
||||||
die("Couldn't Upload Your File to $pathtofile.");
|
die("Couldn't Upload Your File to $pathtofile.");
|
||||||
|
} else {
|
||||||
|
@unlink($img1);
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
rename($img1, $pathtofile)
|
rename($img1, $pathtofile)
|
||||||
or die("Couldn't Upload Your File to $pathtofile.");
|
or die("Couldn't Upload Your File to $pathtofile.");
|
||||||
|
Loading…
Reference in New Issue
Block a user