Changing height to width would matter... since you aren't storing the height. You would have to update the code:
<?php
if (isset($_FILES)) {
$image_info = getimagesize($_FILES["news_image_small"]["tmp_name"]);
$_FILES["news_image_small"]["width"] = $image_info[0];
}
?>
to:
<?php
if (isset($_FILES)) {
$image_info = getimagesize($_FILES["news_image_small"]["tmp_name"]);
$_FILES["news_image_small"]["width"] = $image_info[0];
$_FILES["news_image_small"]["height"] = $image_info[1];
}
?>

