From 8a10cb894896b57f9b5ac1f70d9e20084f967f20 Mon Sep 17 00:00:00 2001 From: hugetoad Date: Sun, 19 Oct 2003 10:55:54 +0000 Subject: - fix for dashed lines under some broken GD (Alexei) git-svn-id: svn://svn.zabbix.com/trunk@1002 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/map.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'frontends/php/map.php') diff --git a/frontends/php/map.php b/frontends/php/map.php index adfaeef7..6debf285 100644 --- a/frontends/php/map.php +++ b/frontends/php/map.php @@ -76,12 +76,12 @@ { for($x=$grid;$x<$width;$x+=$grid) { - ImageDashedLine($im,$x,0,$x,$height,$black); + DashedLine($im,$x,0,$x,$height,$black); ImageString($im, 2, $x+2,2, $x , $black); } for($y=$grid;$y<$height;$y+=$grid) { - ImageDashedLine($im,0,$y,$width,$y,$black); + DashedLine($im,0,$y,$width,$y,$black); ImageString($im, 2, 2,$y+2, $y , $black); } -- cgit