summaryrefslogtreecommitdiffstats
path: root/frontends/php/actionconf.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-06-13 10:49:05 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2008-06-13 10:49:05 +0000
commit2510ab031be9e95d70d3e83533b49ccc735139e6 (patch)
treefc6a7f71327aedb2437ad46cef2a503500ad9548 /frontends/php/actionconf.php
parent534b1225bd1b024774ca096874ca08244b6d748c (diff)
downloadzabbix-2510ab031be9e95d70d3e83533b49ccc735139e6.tar.gz
zabbix-2510ab031be9e95d70d3e83533b49ccc735139e6.tar.xz
zabbix-2510ab031be9e95d70d3e83533b49ccc735139e6.zip
- [DEV-171] fixed hosts & host-groups name validation in commands (Artem)
git-svn-id: svn://svn.zabbix.com/trunk@5766 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/actionconf.php')
-rw-r--r--frontends/php/actionconf.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/frontends/php/actionconf.php b/frontends/php/actionconf.php
index 485042d9..c8f4fada 100644
--- a/frontends/php/actionconf.php
+++ b/frontends/php/actionconf.php
@@ -253,7 +253,7 @@ include_once 'include/page_header.php';
$_REQUEST['operations'] = get_request('operations',array());
if($new_operation['esc_step_from'] > $new_operation['esc_step_to']) {
- $from = $new_operation['esc_step_to'];
+ $from = $new_operation['esc_step_to'];
$new_operation['esc_step_to'] = $new_operation['esc_step_from'];
$new_operation['esc_step_from'] = $from;
}
@@ -467,6 +467,8 @@ include_once 'include/page_header.php';
$outer_table->AddRow(array($td_l,$td_r));
$frmAction->Additem($outer_table);
+
+ show_messages();
$frmAction->Show();
//*/
}