diff --git a/reference/image/functions/imagedashedline.xml b/reference/image/functions/imagedashedline.xml index b086d0f0a4..b054df5d4b 100644 --- a/reference/image/functions/imagedashedline.xml +++ b/reference/image/functions/imagedashedline.xml @@ -1,5 +1,5 @@ - + imagedashedline @@ -117,15 +117,15 @@ $white = imagecolorallocate($im, 0xFF, 0xFF, 0xFF); // Define our style: First 4 pixels is white and the // next 4 is transparent. This creates the dashed line effect $style = Array( - $white, - $white, - $white, - $white, - IMG_COLOR_TRANSPARENT, - IMG_COLOR_TRANSPARENT, - IMG_COLOR_TRANSPARENT, - IMG_COLOR_TRANSPARENT - ); + $white, + $white, + $white, + $white, + IMG_COLOR_TRANSPARENT, + IMG_COLOR_TRANSPARENT, + IMG_COLOR_TRANSPARENT, + IMG_COLOR_TRANSPARENT + ); imagesetstyle($im, $style);