summaryrefslogtreecommitdiffstats
path: root/frontends/php/include/forms.inc.php
diff options
context:
space:
mode:
authorsasha <sasha@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-03-13 21:35:49 +0000
committersasha <sasha@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-03-13 21:35:49 +0000
commite5ace5611c956becbfaab1874cb1276b8922ce69 (patch)
tree3a51cdd15d44559d39fe8c567db89c133870631d /frontends/php/include/forms.inc.php
parent1f69048c2b2ce89df4e5e750a506f846108afcd1 (diff)
downloadzabbix-e5ace5611c956becbfaab1874cb1276b8922ce69.tar.gz
zabbix-e5ace5611c956becbfaab1874cb1276b8922ce69.tar.xz
zabbix-e5ace5611c956becbfaab1874cb1276b8922ce69.zip
- [DEV-108] GUI - Actions
git-svn-id: svn://svn.zabbix.com/trunk@5486 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/forms.inc.php')
-rw-r--r--frontends/php/include/forms.inc.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/frontends/php/include/forms.inc.php b/frontends/php/include/forms.inc.php
index b79963d6..2c31539c 100644
--- a/frontends/php/include/forms.inc.php
+++ b/frontends/php/include/forms.inc.php
@@ -3162,7 +3162,8 @@ include_once 'include/discovery.inc.php';
break;
case CONDITION_TYPE_DSTATUS:
$cmbCondVal = new CComboBox('new_condition[value]');
- foreach(array(DOBJECT_STATUS_UP, DOBJECT_STATUS_DOWN) as $stat)
+ foreach(array(DOBJECT_STATUS_UP, DOBJECT_STATUS_DOWN, DOBJECT_STATUS_DISCOVER,
+ DOBJECT_STATUS_LOST) as $stat)
$cmbCondVal->AddItem($stat,discovery_object_status2str($stat));
$rowCondition[] = $cmbCondVal;