diff options
Diffstat (limited to 'frontends/php/map.php')
| -rw-r--r-- | frontends/php/map.php | 4 |
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); } |
