Use correct var. Props Nazgul. fixes #3182

git-svn-id: https://develop.svn.wordpress.org/trunk@4266 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-10-02 18:27:11 +00:00
parent 09830f0bbd
commit ca1d950498
1 changed files with 1 additions and 1 deletions

View File

@ -1896,7 +1896,7 @@ function wp_handle_upload(&$file, $overrides = false) {
// Move the file to the uploads dir
$new_file = $uploads['path'] . "/$filename";
if ( false === @ move_uploaded_file($file['tmp_name'], $new_file) )
wp_die(printf(__('The uploaded file could not be moved to %s.'), $file['path']));
wp_die(printf(__('The uploaded file could not be moved to %s.'), $uploads['path']));
// Set correct file permissions
$stat = stat(dirname($new_file));