summaryrefslogtreecommitdiffstats
path: root/frontends/php/tr_status.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/tr_status.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/tr_status.php')
-rw-r--r--frontends/php/tr_status.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/frontends/php/tr_status.php b/frontends/php/tr_status.php
index 95a07f88..a19ef1a8 100644
--- a/frontends/php/tr_status.php
+++ b/frontends/php/tr_status.php
@@ -323,8 +323,8 @@ include_once "include/page_header.php";
$form->SetMethod('get');
$form->AddItem(new CTextBox("txt_select",$txt_select,15));
- $form->AddItem(new CButton("btnSelect", "Select"));
- $form->AddItem(new CButton("btnSelect", "Inverse select"));
+ $form->AddItem(new CButton("btnSelect", S_SELECT));
+ $form->AddItem(new CButton("btnSelect", S_INVERSE_SELECT));
$form->AddVar("compact",$compact);
$form->AddVar("noactions",$noactions);
$form->AddVar("select",$select);
@@ -437,7 +437,7 @@ include_once "include/page_header.php";
$description = expand_trigger_description($row['triggerid']);
- if(isset($_REQUEST["btnSelect"]) && '' != $txt_select && ((zbx_stristr($description, $txt_select)) == ($_REQUEST["btnSelect"]=="Inverse select"))) continue;
+ if(isset($_REQUEST["btnSelect"]) && '' != $txt_select && ((zbx_stristr($description, $txt_select)) == ($_REQUEST["btnSelect"]==S_INVERSE_SELECT))) continue;
if($row["url"] != "")
{
@@ -614,4 +614,4 @@ include_once "include/page_header.php";
?>
<?php
include_once "include/page_footer.php";
-?> \ No newline at end of file
+?>