mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Silenzio.
git-svn-id: http://svn.automattic.com/wordpress/trunk@3380 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8cdc22e3d8
commit
fb25862f14
@ -1721,7 +1721,7 @@ function wp_handle_upload(&$file, $overrides = false) {
|
||||
return $upload_error_handler($file, __('File is empty. Please upload something more substantial.'));
|
||||
|
||||
// A properly uploaded file will pass this test. There should be no reason to override this one.
|
||||
if (! is_uploaded_file($file['tmp_name']) )
|
||||
if (! @ is_uploaded_file($file['tmp_name']) )
|
||||
return $upload_error_handler($file, __('Specified file failed upload test.'));
|
||||
|
||||
// A correct MIME type will pass this test.
|
||||
@ -1764,7 +1764,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) )
|
||||
if ( false === @ move_uploaded_file($file['tmp_name'], $new_file) )
|
||||
die(printf(__('The uploaded file could not be moved to %s.'), $file['path']));
|
||||
|
||||
// Set correct file permissions
|
||||
|
Loading…
Reference in New Issue
Block a user