diff options
| author | alex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-03-12 12:08:30 +0000 |
|---|---|---|
| committer | alex <alex@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-03-12 12:08:30 +0000 |
| commit | 2c21b9b9c32ce187327094d7c9839d0f4de1cb3e (patch) | |
| tree | 31d97ea37a3c1d4c6fb09e8808e81de752a31816 /frontends/php/actionconf.php | |
| parent | a898c94111e6c0932c49f8af20570a473da5be21 (diff) | |
| download | zabbix-2c21b9b9c32ce187327094d7c9839d0f4de1cb3e.tar.gz zabbix-2c21b9b9c32ce187327094d7c9839d0f4de1cb3e.tar.xz zabbix-2c21b9b9c32ce187327094d7c9839d0f4de1cb3e.zip | |
- fixed warning when enabling/disabling action (Alexei)
git-svn-id: svn://svn.zabbix.com/trunk@3883 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/actionconf.php')
| -rw-r--r-- | frontends/php/actionconf.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/frontends/php/actionconf.php b/frontends/php/actionconf.php index 4e7395a0..8f6826cd 100644 --- a/frontends/php/actionconf.php +++ b/frontends/php/actionconf.php @@ -198,7 +198,7 @@ include_once "include/page_header.php"; { $res = update_action_status($row["actionid"],0); if($res) - array_push($row["actionid"], $actionids); + $actionids[] = $row["actionid"]; } if(isset($res)) { @@ -217,7 +217,7 @@ include_once "include/page_header.php"; { $res = update_action_status($row["actionid"],1); if($res) - array_push($row["actionid"], $actionids); + $actionids[] = $row["actionid"]; } if(isset($res)) { @@ -236,7 +236,7 @@ include_once "include/page_header.php"; { $del_res = delete_action($row["actionid"]); if($del_res) - array_push($actionids, $row["actionid"]); + $actionids[] = $row["actionid"]; } if(isset($del_res)) { |
