Ticket #4214: crop_images_err.patch
File crop_images_err.patch, 883 bytes (added by , 12 years ago) |
---|
-
bp-core/bp-core-avatars.php
546 546 547 547 // Crop the image 548 548 $full_cropped = wp_crop_image( $original_file, (int)$crop_x, (int)$crop_y, (int)$crop_w, (int)$crop_h, bp_core_avatar_full_width(), bp_core_avatar_full_height(), false, $avatar_folder_dir . '/' . $full_filename ); 549 if ( is_wp_error($full_cropped) || !$full_cropped ) 550 return false; 549 551 $thumb_cropped = wp_crop_image( $original_file, (int)$crop_x, (int)$crop_y, (int)$crop_w, (int)$crop_h, bp_core_avatar_thumb_width(), bp_core_avatar_thumb_height(), false, $avatar_folder_dir . '/' . $thumb_filename ); 552 if ( is_wp_error($thumb_cropped) || !$thumb_cropped ) 553 return false; 550 554 551 555 // Remove the original 552 556 @unlink( $original_file );