diff options
author | Christopher Smith <chris@jalakai.co.uk> | 2013-02-18 18:55:33 +0000 |
---|---|---|
committer | Christopher Smith <chris@jalakai.co.uk> | 2013-02-24 12:39:01 +0000 |
commit | f2cf18dae6f9e86142c9c20294266562f69fe641 (patch) | |
tree | 19370b0dafb1f9f9e90661bea560eb2d66d5b636 | |
parent | 64b85cca2e8112341456bb9413ed2dc33050b607 (diff) | |
download | rpg-f2cf18dae6f9e86142c9c20294266562f69fe641.tar.gz rpg-f2cf18dae6f9e86142c9c20294266562f69fe641.tar.bz2 |
remove security token from tpl_actiondropdown - its not necessary, we're not posting any system change
-rw-r--r-- | inc/template.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/inc/template.php b/inc/template.php index e9c0f1699..1734b08a0 100644 --- a/inc/template.php +++ b/inc/template.php @@ -1377,7 +1377,6 @@ function tpl_actiondropdown($empty = '', $button = '>') { echo '<div class="no">'; echo '<input type="hidden" name="id" value="'.$ID.'" />'; if($REV) echo '<input type="hidden" name="rev" value="'.$REV.'" />'; - echo '<input type="hidden" name="sectok" value="'.getSecurityToken().'" />'; echo '<select name="do" class="edit quickselect" title="'.$lang['tools'].'">'; echo '<option value="">'.$empty.'</option>'; |