summaryrefslogtreecommitdiffstats
path: root/frontends/php/tr_status.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-08-05 14:25:48 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-08-05 14:25:48 +0000
commitd1eb7d75f8caecbc8ca72210e3c6f0bfb9dec6a6 (patch)
treef18f050c04221aa5814641e2cd8f455fb10786d5 /frontends/php/tr_status.php
parente33e68fccdfdabd17ff8ce5f818dbed7f58e301e (diff)
downloadzabbix-d1eb7d75f8caecbc8ca72210e3c6f0bfb9dec6a6.tar.gz
zabbix-d1eb7d75f8caecbc8ca72210e3c6f0bfb9dec6a6.tar.xz
zabbix-d1eb7d75f8caecbc8ca72210e3c6f0bfb9dec6a6.zip
- [DEV-137] changed trigger values definitions (Artem)
- [DEV-191] latest data reverted to standart refresh (Artem) - [DEV-191] added hats to graphs, screens pages (Artem) git-svn-id: svn://svn.zabbix.com/trunk@5873 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/tr_status.php')
-rw-r--r--frontends/php/tr_status.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/frontends/php/tr_status.php b/frontends/php/tr_status.php
index 7053ac6e..5c0a3c9d 100644
--- a/frontends/php/tr_status.php
+++ b/frontends/php/tr_status.php
@@ -312,7 +312,7 @@ include_once "include/page_header.php";
$tr_select = new CComboBox('show_triggers',$show_triggers,'javasctipt: submit();');
if(TRIGGERS_OPTION_ONLYTRUE){
- $tr_select->Additem(TRIGGERS_OPTION_ONLYTRUE,S_SHOW_ONLY_TRUE);
+ $tr_select->Additem(TRIGGERS_OPTION_ONLYTRUE,S_SHOW_ONLY_PROBLEMS);
}
if(TRIGGERS_OPTION_ALL){
@@ -337,7 +337,7 @@ include_once "include/page_header.php";
}
if(EVENTS_OPTION_ONLYTRUE_NOTACK && $config['event_ack_enable']){
- $ev_select->AddItem(EVENTS_OPTION_ONLYTRUE_NOTACK,S_SHOW_TRUE_UNACKNOWLEDGED.SPACE.'('.$config['event_expire'].SPACE.(($config['event_expire']>1)?S_DAYS:S_DAY).')');
+ $ev_select->AddItem(EVENTS_OPTION_ONLYTRUE_NOTACK,S_SHOW_PROBLEM_UNACKNOWLEDGED.SPACE.'('.$config['event_expire'].SPACE.(($config['event_expire']>1)?S_DAYS:S_DAY).')');
}
//------- JP -------
@@ -563,11 +563,11 @@ include_once "include/page_header.php";
$table->AddRow(array(
($config['event_ack_enable'])?SPACE:NULL,
new CCol(
- get_severity_description($row["priority"]),
- get_severity_style($row["priority"])
+ get_severity_description($row['priority']),
+ get_severity_style($row['priority'],$row['value'])
),
$value,
- new CLink(zbx_date2str(S_DATE_FORMAT_YMDHMS,$row["lastchange"]),"events.php?triggerid=".$row["triggerid"],"action"),
+ new CLink(zbx_date2str(S_DATE_FORMAT_YMDHMS,$row['lastchange']),'events.php?triggerid='.$row['triggerid'],'action'),
get_node_name_by_elid($row['triggerid']),
$host,
$description,
@@ -616,11 +616,11 @@ include_once "include/page_header.php";
$table->AddRow(array(
($config['event_ack_enable'])?(($row_event['acknowledged'] == 1)?(SPACE):(new CCheckBox('events['.$row_event['eventid'].']', 'no',NULL,$row_event['eventid']))):NULL,
new CCol(
- get_severity_description($row["priority"]),
- get_severity_style($row["priority"])
+ get_severity_description($row['priority']),
+ get_severity_style($row['priority'],$row['value'])
),
$value,
- new CLink(zbx_date2str(S_DATE_FORMAT_YMDHMS,$row_event['clock']),"events.php?triggerid=".$row["triggerid"],"action"),
+ new CLink(zbx_date2str(S_DATE_FORMAT_YMDHMS,$row_event['clock']),'events.php?triggerid='.$row['triggerid'],'action'),
get_node_name_by_elid($row['triggerid']),
$host,
$description,