From 980a3bc810eac8b27f9b41c1faa7e813369e95d5 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 19 Dec 2008 07:04:18 +0000 Subject: [PATCH] Avoid division by zero git-svn-id: http://svn.automattic.com/wordpress/trunk@10227 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/media.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/media.php b/wp-includes/media.php index 58feaf3ab1..4c3896e0b2 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -231,10 +231,10 @@ function wp_constrain_dimensions( $current_width, $current_height, $max_width=0, $width_ratio = $height_ratio = 1.0; - if ( $max_width > 0 && $current_width > $max_width ) + if ( $max_width > 0 && $current_width > 0 && $current_width > $max_width ) $width_ratio = $max_width / $current_width; - if ( $max_height > 0 && $current_height > $max_height ) + if ( $max_height > 0 && $current_height > 0 && $current_height > $max_height ) $height_ratio = $max_height / $current_height; // the smaller ratio is the one we need to fit it to the constraining box