Changeset 20019
- Timestamp:
- 02/28/2012 08:02:43 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/file.php
r19712 r20019 324 324 $filename = wp_unique_filename( $uploads['path'], $file['name'], $unique_filename_callback ); 325 325 326 $tmp_file = wp_tempnam($filename);327 328 326 // Move the file to the uploads dir 329 if ( false === @ move_uploaded_file( $file['tmp_name'], $tmp_file ) ) 327 $new_file = $uploads['path'] . "/$filename"; 328 if ( false === @ move_uploaded_file( $file['tmp_name'], $new_file ) ) 330 329 return $upload_error_handler( $file, sprintf( __('The uploaded file could not be moved to %s.' ), $uploads['path'] ) ); 331 332 // If a resize was requested, perform the resize.333 $image_resize = isset( $_POST['image_resize'] ) && 'true' == $_POST['image_resize'];334 $do_resize = apply_filters( 'wp_upload_resize', $image_resize );335 $size = @getimagesize( $tmp_file );336 if ( $do_resize && $size ) {337 $old_temp = $tmp_file;338 $tmp_file = image_resize( $tmp_file, (int) get_option('large_size_w'), (int) get_option('large_size_h'), 0, 'resized');339 if ( ! is_wp_error($tmp_file) ) {340 unlink($old_temp);341 } else {342 $tmp_file = $old_temp;343 }344 }345 346 // Copy the temporary file into its destination347 $new_file = $uploads['path'] . "/$filename";348 copy( $tmp_file, $new_file );349 unlink($tmp_file);350 330 351 331 // Set correct file permissions
Note: See TracChangeset
for help on using the changeset viewer.