Fix a misnamed variable in image::resize_image_border() and add a unit test to make sure we call this function to test it

This commit is contained in:
EA Durbin
2006-08-31 02:23:01 +00:00
committed by WineHQ
parent 320b8c0d82
commit 988be2f138
2 changed files with 22 additions and 2 deletions

View File

@@ -270,7 +270,7 @@ class Image {
." in $sBorderColor");
imagedestroy($this->oImage);
$this->oImage = $new;
$this->iWidth = $new_witdh;
$this->iWidth = $iNewWidth;
$this->iHeight= $iNewHeight;
}