diff options
author | Andreas Gohr <andi@splitbrain.org> | 2013-05-03 12:11:34 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2013-05-03 12:11:34 +0200 |
commit | e63eccff3ef8998a3dac6034132970be5dad0069 (patch) | |
tree | c51d433dfac0df8462e067ae5e579c784d2ed32f | |
parent | 4bc058637bdcf381c07dfb96502b96afa71df76a (diff) | |
download | rpg-e63eccff3ef8998a3dac6034132970be5dad0069.tar.gz rpg-e63eccff3ef8998a3dac6034132970be5dad0069.tar.bz2 |
use correct endpoint in tpl_actiondropdown FS#2760
-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 415b56de7..a87650b84 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="get" accept-charset="utf-8">'; + echo '<form action="'.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.'" />'; |