summaryrefslogtreecommitdiffstats
path: root/frontends/php/triggers.php
diff options
context:
space:
mode:
authorartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-09-06 13:24:21 +0000
committerartem <artem@97f52cf1-0a1b-0410-bd0e-c28be96e8082>2007-09-06 13:24:21 +0000
commit9f9503d36173f5b0fea471ab7465d95103eff07e (patch)
treebca0bd75bebd7711a6729ef08e952125a5cb8d9c /frontends/php/triggers.php
parentac95afe73509dad324813c1abf1e9231c6cf9d59 (diff)
downloadzabbix-9f9503d36173f5b0fea471ab7465d95103eff07e.tar.gz
zabbix-9f9503d36173f5b0fea471ab7465d95103eff07e.tar.xz
zabbix-9f9503d36173f5b0fea471ab7465d95103eff07e.zip
- merged rev. 4731:4733 of branches/1.4 (Artem) [changes default method for form to 'post']
git-svn-id: svn://svn.zabbix.com/trunk@4735 97f52cf1-0a1b-0410-bd0e-c28be96e8082
Diffstat (limited to 'frontends/php/triggers.php')
-rw-r--r--frontends/php/triggers.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/frontends/php/triggers.php b/frontends/php/triggers.php
index 72a37f3c..eacf2fc6 100644
--- a/frontends/php/triggers.php
+++ b/frontends/php/triggers.php
@@ -303,7 +303,7 @@ include_once "include/page_header.php";
?>
<?php
$r_form = new CForm();
-
+ $r_form->SetMethod('get');
$r_form->AddItem(array('[',
new CLink($showdisabled ? S_HIDE_DISABLED_TRIGGERS : S_SHOW_DISABLED_TRIGGERS,
'triggers.php?showdisabled='.($showdisabled ? 0 : 1),'action'),
@@ -367,6 +367,7 @@ include_once "include/page_header.php";
/* TABLE */
$form = new CForm('triggers.php');
$form->SetName('triggers');
+ $form->SetMethod('post');
$form->AddVar('hostid',$_REQUEST["hostid"]);
$table = new CTableInfo(S_NO_TRIGGERS_DEFINED);