diff options
| author | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-06-30 10:03:23 +0000 |
|---|---|---|
| committer | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2008-06-30 10:03:23 +0000 |
| commit | 83eb854d01145ddb03b03d71e93a39b27539650e (patch) | |
| tree | 1bf0472607c3e1968972d0b0624a8b2cf6c83f4e /frontends/php/include/graphs.inc.php | |
| parent | 197f0c3db5a4fd740a8783049c75fa6693e438bf (diff) | |
| download | zabbix-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/graphs.inc.php')
| -rw-r--r-- | frontends/php/include/graphs.inc.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/frontends/php/include/graphs.inc.php b/frontends/php/include/graphs.inc.php index b6b64fd9..8c203c6b 100644 --- a/frontends/php/include/graphs.inc.php +++ b/frontends/php/include/graphs.inc.php @@ -79,11 +79,11 @@ if($type == GRAPH_ITEM_AGGREGATED) return '-'; switch($drawtype){ - case GRAPH_ITEM_DRAWTYPE_LINE: $drawtype = "Line"; break; - case GRAPH_ITEM_DRAWTYPE_FILLED_REGION: $drawtype = "Filled region"; break; - case GRAPH_ITEM_DRAWTYPE_BOLD_LINE: $drawtype = "Bold line"; break; - case GRAPH_ITEM_DRAWTYPE_DOT: $drawtype = "Dot"; break; - case GRAPH_ITEM_DRAWTYPE_DASHED_LINE: $drawtype = "Dashed line"; break; + case GRAPH_ITEM_DRAWTYPE_LINE: $drawtype = S_LINE; break; + case GRAPH_ITEM_DRAWTYPE_FILLED_REGION: $drawtype = S_FILLED_REGION; break; + case GRAPH_ITEM_DRAWTYPE_BOLD_LINE: $drawtype = S_BOLD_LINE; break; + case GRAPH_ITEM_DRAWTYPE_DOT: $drawtype = S_DOT; break; + case GRAPH_ITEM_DRAWTYPE_DASHED_LINE: $drawtype = S_DASHED_LINE; break; default: $drawtype = S_UNKNOWN; break; } return $drawtype; |
