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-24 12:39:01 +0000 |
commit | 64b85cca2e8112341456bb9413ed2dc33050b607 (patch) | |
tree | 1ca50958c40b7988dff189f7070949fa94a00923 | |
parent | 9dc3b8ab758eb9236e8f1933309f2bc539cf3f5e (diff) | |
download | rpg-64b85cca2e8112341456bb9413ed2dc33050b607.tar.gz rpg-64b85cca2e8112341456bb9413ed2dc33050b607.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.'" />'; |