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-18 18:55:33 +0000 |
commit | a02e0d0ea02e11f105aeb3b9cc4dabdd5a1bc217 (patch) | |
tree | e7267ee54b7480e3dba068eb396edda3f8314287 | |
parent | 7a4d121f8568b0aee5f0e117737f3675dcc85100 (diff) | |
download | rpg-a02e0d0ea02e11f105aeb3b9cc4dabdd5a1bc217.tar.gz rpg-a02e0d0ea02e11f105aeb3b9cc4dabdd5a1bc217.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>'; |