summaryrefslogtreecommitdiffstats
path: root/frontends/php/map.php
diff options
context:
space:
mode:
authorhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2003-10-19 10:55:54 +0000
committerhugetoad <hugetoad@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2003-10-19 10:55:54 +0000
commit8a10cb894896b57f9b5ac1f70d9e20084f967f20 (patch)
tree191b79ae9daf9879a1079cc2fea75e98b87358c4 /frontends/php/map.php
parentf4592ae04a7270d0be754186476ef50f164dce3c (diff)
downloadzabbix-8a10cb894896b57f9b5ac1f70d9e20084f967f20.tar.gz
zabbix-8a10cb894896b57f9b5ac1f70d9e20084f967f20.tar.xz
zabbix-8a10cb894896b57f9b5ac1f70d9e20084f967f20.zip
- fix for dashed lines under some broken GD (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@1002 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/map.php')
-rw-r--r--frontends/php/map.php4
1 files changed, 2 insertions, 2 deletions
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);
}