diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2013-02-18 18:51:01 +0000 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2013-02-18 18:51:01 +0000 |
commit | 7a4d121f8568b0aee5f0e117737f3675dcc85100 (patch) | |
tree | e83aff5ddd2e90eb5aada8cc177cce7c3b1d4758 | |
parent | 26ed704a1d2b2e40b06498df3fe2a747b751de28 (diff) | |
download | rpg-7a4d121f8568b0aee5f0e117737f3675dcc85100.tar.gz rpg-7a4d121f8568b0aee5f0e117737f3675dcc85100.tar.bz2 |
change tpl_actiondropdown request method to 'get'
-rw-r--r-- | inc/template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/template.php b/inc/template.php index a5bcabf1e..e9c0f1699 100644 --- a/inc/template.php +++ b/inc/template.php @@ -1373,7 +1373,7 @@ function tpl_actiondropdown($empty = '', $button = '>') { global $REV; global $lang; - echo '<form action="'.DOKU_SCRIPT.'" method="post" accept-charset="utf-8">'; + echo '<form action="'.DOKU_SCRIPT.'" method="get" accept-charset="utf-8">'; echo '<div class="no">'; echo '<input type="hidden" name="id" value="'.$ID.'" />'; if($REV) echo '<input type="hidden" name="rev" value="'.$REV.'" />'; |