summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/maps.inc.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-06-30 10:03:23 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-06-30 10:03:23 +0000
commit83eb854d01145ddb03b03d71e93a39b27539650e (patch)
tree1bf0472607c3e1968972d0b0624a8b2cf6c83f4e /frontends/php/include/maps.inc.php
parent197f0c3db5a4fd740a8783049c75fa6693e438bf (diff)
downloadzabbix-83eb854d01145ddb03b03d71e93a39b27539650e.tar.gz
zabbix-83eb854d01145ddb03b03d71e93a39b27539650e.tar.xz
zabbix-83eb854d01145ddb03b03d71e93a39b27539650e.zip
- [DEV-137] minor changes in locales and sorting discovery hosts table (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5807 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/maps.inc.php')
-rw-r--r--frontends/php/include/maps.inc.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/frontends/php/include/maps.inc.php b/frontends/php/include/maps.inc.php
index a06564df..5754b0d2 100644
--- a/frontends/php/include/maps.inc.php
+++ b/frontends/php/include/maps.inc.php
@@ -56,10 +56,10 @@
*/
function map_link_drawtype2str($drawtype){
switch($drawtype){
- case MAP_LINK_DRAWTYPE_LINE: $drawtype = "Line"; break;
- case MAP_LINK_DRAWTYPE_BOLD_LINE: $drawtype = "Bold line"; break;
- case MAP_LINK_DRAWTYPE_DOT: $drawtype = "Dot"; break;
- case MAP_LINK_DRAWTYPE_DASHED_LINE: $drawtype = "Dashed line"; break;
+ case MAP_LINK_DRAWTYPE_LINE: $drawtype = S_LINE; break;
+ case MAP_LINK_DRAWTYPE_BOLD_LINE: $drawtype = S_BOLD_LINE; break;
+ case MAP_LINK_DRAWTYPE_DOT: $drawtype = S_DOT; break;
+ case MAP_LINK_DRAWTYPE_DASHED_LINE: $drawtype = S_DASHED_LINE; break;
default: $drawtype = S_UNKNOWN; break;
}
return $drawtype;