diff options
| author | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-04-27 13:19:15 +0000 |
|---|---|---|
| committer | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-04-27 13:19:15 +0000 |
| commit | 0482c7707b3cbbafe8a6b8197b49e92b44f67f23 (patch) | |
| tree | d91fcc997d1d020a3a5b927f6b4fa475b23f5d4f /frontends/php/include/forms.inc.php | |
| parent | f81b0191e3b97b65e30d02889a1fed9b9e73870e (diff) | |
| download | zabbix-0482c7707b3cbbafe8a6b8197b49e92b44f67f23.tar.gz zabbix-0482c7707b3cbbafe8a6b8197b49e92b44f67f23.tar.xz zabbix-0482c7707b3cbbafe8a6b8197b49e92b44f67f23.zip | |
- added 'received value' condition type for actions (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@4069 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/include/forms.inc.php')
| -rw-r--r-- | frontends/php/include/forms.inc.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/frontends/php/include/forms.inc.php b/frontends/php/include/forms.inc.php index 2466a531..1adb7679 100644 --- a/frontends/php/include/forms.inc.php +++ b/frontends/php/include/forms.inc.php @@ -2979,6 +2979,9 @@ include_once 'include/discovery.inc.php'; case CONDITION_TYPE_DUPTIME: $rowCondition[] = new CNumericBox('new_condition[value]','600',15); break; + case CONDITION_TYPE_DVALUE: + $rowCondition[] = new CTextBox('new_condition[value]', "", 40); + break; } $frmAction->AddRow(S_NEW_CONDITION, array( |
