diff options
| author | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-10-01 13:04:25 +0000 |
|---|---|---|
| committer | artem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082> | 2007-10-01 13:04:25 +0000 |
| commit | e2919d9724b95a51dddad4af375b1ad8bd268c9b (patch) | |
| tree | 1cbc64cb5e713f16956f70b8f971c80ffde1f5f0 /frontends/php/items.php | |
| parent | 1af2e686674938964fbd0bbb7684f2c43d122420 (diff) | |
| download | zabbix-e2919d9724b95a51dddad4af375b1ad8bd268c9b.tar.gz zabbix-e2919d9724b95a51dddad4af375b1ad8bd268c9b.tar.xz zabbix-e2919d9724b95a51dddad4af375b1ad8bd268c9b.zip | |
- [ZBX-88] merged rev. 4814:4816 of branches/1.4/ (Artem) [fixed "Change method in all forms which affects display info to 'get" issue]
git-svn-id: svn://svn.zabbix.com/trunk@4818 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/items.php')
| -rw-r--r-- | frontends/php/items.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/frontends/php/items.php b/frontends/php/items.php index 0d49e55e..f654d94b 100644 --- a/frontends/php/items.php +++ b/frontends/php/items.php @@ -516,6 +516,7 @@ include_once "include/page_header.php"; <?php $form = new CForm(); + $form->SetMethod('get'); $form->SetName('hdrform'); $form->AddVar("hostid",$_REQUEST["hostid"]); @@ -537,7 +538,8 @@ include_once "include/page_header.php"; echo BR; // Table HEADER $form = new CForm(); - + $form->SetMethod('get'); + $where_case = array(); $from_tables['h'] = 'hosts h'; $where_case[] = 'i.hostid=h.hostid'; @@ -734,7 +736,6 @@ include_once "include/page_header.php"; // TABLE $form = new CForm(); $form->SetName('items'); - $form->SetMethod('post'); $table = new CTableInfo(); $table->SetHeader(array( |
