diff options
| author | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-05-12 14:23:12 +0000 |
|---|---|---|
| committer | osmiy <osmiy@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2006-05-12 14:23:12 +0000 |
| commit | 4182bc6afb20b00fa27a54c67056bb98a58a49bb (patch) | |
| tree | 5cab17d23e387cc3b6e8c92e4c928ac5e1111b76 /frontends/php/hosts.php | |
| parent | 6a6ac0772b8215bffc5fe8b02fc1033dbf273f41 (diff) | |
| download | zabbix-4182bc6afb20b00fa27a54c67056bb98a58a49bb.tar.gz zabbix-4182bc6afb20b00fa27a54c67056bb98a58a49bb.tar.xz zabbix-4182bc6afb20b00fa27a54c67056bb98a58a49bb.zip | |
- speed improvement for Overview screens (Eugene)
- developed 'net.if.total[*]' parameter (Eugene)
- fixed new map link adding (Eugene)
- fixed host group adding (Eugene)
- fixed map displaying (Eugene)
- fixed 'No permissions' for 'Latest data','Triggers','Alarms' screens (Eugene)
- fixed permision deletion (Eugene)
- fixed 'get_map_by_sysmapid' function calls(Eugene)
- improved php code execution speed (Eugene)
git-svn-id: svn://svn.zabbix.com/trunk@2825 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/hosts.php')
| -rw-r--r-- | frontends/php/hosts.php | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/frontends/php/hosts.php b/frontends/php/hosts.php index 0695a0b9..cac15ebd 100644 --- a/frontends/php/hosts.php +++ b/frontends/php/hosts.php @@ -460,8 +460,7 @@ $table = new CTableInfo(S_NO_HOSTS_DEFINED); $table->setHeader(array( - array(new CCheckBox("all_hosts",NULL,NULL, - "CheckAll('".$form->GetName()."','all_hosts');"), + array(new CCheckBox("all_hosts",NULL,"CheckAll('".$form->GetName()."','all_hosts');"), SPACE.S_NAME), $show_only_tmp ? NULL : S_IP, $show_only_tmp ? NULL : S_PORT, @@ -492,7 +491,7 @@ if($template == "/") $template = NULL; $host=new CCol(array( - new CCheckBox("hosts[]",NULL,NULL,NULL,$row["hostid"]), + new CCheckBox("hosts[]",NULL,NULL,$row["hostid"]), SPACE, new CSpan($template,"unknown"), new CLink($row["host"],"hosts.php?form=update&hostid=". @@ -597,7 +596,7 @@ $table = new CTableInfo(S_NO_HOST_GROUPS_DEFINED); $table->setHeader(array( - array( new CCheckBox("all_groups",NULL,NULL, + array( new CCheckBox("all_groups",NULL, "CheckAll('".$form->GetName()."','all_groups');"), SPACE, S_NAME), @@ -629,7 +628,7 @@ $table->AddRow(array( array( - new CCheckBox("groups[]",NULL,NULL,NULL,$db_group["groupid"]), + new CCheckBox("groups[]",NULL,NULL,$db_group["groupid"]), SPACE, new CLink( $db_group["name"], @@ -771,7 +770,7 @@ $table = new CTableInfo(); $table->SetHeader(array( - array(new CCheckBox("all_applications",NULL,NULL, + array(new CCheckBox("all_applications",NULL, "CheckAll('".$form->GetName()."','all_applications');"), SPACE, S_ID), @@ -804,7 +803,7 @@ $table->AddRow(array( - array(new CCheckBox("applications[]",NULL,NULL,NULL,$db_app["applicationid"]), + array(new CCheckBox("applications[]",NULL,NULL,$db_app["applicationid"]), SPACE, $db_app["applicationid"]), $name, |
