From 25ce1628be63a520fc25a8655cb358c1d5665732 Mon Sep 17 00:00:00 2001 From: Yannick Torres Date: Sun, 14 Dec 2008 08:50:23 +0000 Subject: [PATCH] kill TAB git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@271218 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/image/functions/imagedashedline.xml | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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);