Handle GD errors correctly during image resizing. Fixes #6087. Hat tip: tellyworth.
git-svn-id: http://svn.automattic.com/wordpress/trunk@7150 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0456afb16d
commit
6ecded2a95
|
@ -235,7 +235,7 @@ function image_resize( $file, $max_w, $max_h, $crop=false, $suffix=null, $dest_p
|
||||||
function image_make_intermediate_size($file, $width, $height, $crop=false) {
|
function image_make_intermediate_size($file, $width, $height, $crop=false) {
|
||||||
if ( $width || $height ) {
|
if ( $width || $height ) {
|
||||||
$resized_file = image_resize($file, $width, $height, $crop);
|
$resized_file = image_resize($file, $width, $height, $crop);
|
||||||
if ( $resized_file && $info = getimagesize($resized_file) ) {
|
if ( !is_wp_error($resized_file) && $resized_file && $info = getimagesize($resized_file) ) {
|
||||||
return array(
|
return array(
|
||||||
'file' => basename( $resized_file ),
|
'file' => basename( $resized_file ),
|
||||||
'width' => $info[0],
|
'width' => $info[0],
|
||||||
|
|
Loading…
Reference in New Issue