From 57d2c7c6f9ff0b2ea5a5c12bc62f3c0014e7507b Mon Sep 17 00:00:00 2001 From: osmiy Date: Wed, 30 Aug 2006 08:50:30 +0000 Subject: ported r3240:3246 ('<=' for trigger severity & '+' for trigger) from 1.1.2 git-svn-id: svn://svn.zabbix.com/trunk@3247 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- frontends/php/include/forms.inc.php | 2 ++ 1 file changed, 2 insertions(+) (limited to 'frontends/php/include/forms.inc.php') diff --git a/frontends/php/include/forms.inc.php b/frontends/php/include/forms.inc.php index e2ea1e11..14230e9b 100644 --- a/frontends/php/include/forms.inc.php +++ b/frontends/php/include/forms.inc.php @@ -1339,6 +1339,8 @@ $cmbCondOp->AddItem(CONDITION_OPERATOR_IN, 'in'); if(in_array($new_condition_type,array(CONDITION_TYPE_TRIGGER_SEVERITY))) $cmbCondOp->AddItem(CONDITION_OPERATOR_MORE_EQUAL, '>='); + if(in_array($new_condition_type,array(CONDITION_TYPE_TRIGGER_SEVERITY))) + $cmbCondOp->AddItem(CONDITION_OPERATOR_LESS_EQUAL, '<='); array_push($rowCondition,$cmbCondOp); -- cgit